On Fri, Dec 22, 2000 at 01:31:57PM +0100, Sylvain SANTRISSE wrote:
How-To-Repeat:
insert a blob bigger than 15 mo via any API.
The manual for SHOW VARIABLES says:
``max_allowed_packet''
The maximum size of one packet. The message buffer is initialized
to `net_buffer_length' bytes, but can grow up to
`max_allowed_packet' bytes when needed. This value by default is
small, to catch big (possibly wrong) packets. You must increase
this value if you are using big `BLOB' columns. It should be as
big as the biggest `BLOB' you want to use. The current protocol
limits `max_allowed_packet' to 16M.
It's not possible to have a packet larger than 16M, because of a limit
in the client-server protocol.
Tim