LONGBLOB
This page is part of MariaDB's Documentation.
The parent of this page is: Data Types for MariaDB Xpand
Topics on this page:
Overview
String for variable-length binary data.
USAGE
LONGBLOB
EXAMPLES
LONGBLOB
Example of LONGBLOB
:
CREATE TABLE longblob_example (
description VARCHAR(20),
example LONGBLOB
) DEFAULT CHARSET=latin1;
Note that the maximum size of a LONGBLOB
data can be so large that it cannot be sent to the server without breaking the value up into chunks (something that the command-line client cannot do). For values larger than 16M you can increase the max_allowed_packet
size up to a maximum of 1024M to increase the allowed size of non-chunked values.