This section describes how to create tables with BLOB (LONGBLOB) columns in Oracle server.
Oracle support BLOB with the BLOB data type:
BLOB - A BLOB column with a maximum length of (2**32 - 1)*(the value of the CHUNK parameter of LOB storage),
about 32TB with default block size.
In order to test BLOB columns in Oracle server, I used the Oracle commnand line interface
to create a test table with one BLOB column:
C:\>sqlplus
Enter user-name: Herong/TopSecret
SQL> -- Create the test table with a BLOB column
2 CREATE TABLE Image (ID INTEGER PRIMARY KEY,
3 Subject VARCHAR(256),
4 Body CLOB);
Table created.