Part of the problem was the way the server settings were allocating
memory. The concat would work until a certain size and then the
suddenly failed to insert (inserted NULL). After the memory
configuration change, in terms of concatenating (with CONCAT) in
pieces, it seems to work at least
Hello, realizing that there is a max_allowed_packet setting that limits
the size of the insert statement, is there a way around it by chunking
the query?
In particular, if the query is to insert a large text or blob, can I
simply concatenate smaller pieces of the data in succession using the
C