Store images in DB2 BLOB

DB2 BLOB Type Features Native large object type for DB2 Supports large image sizes (up to 2GB per BLOB) Distinct from CLOB (character large object) and NCLOB (national character large object) Step 1: Create a Table with BLOB Column CREATE TABLE image_storage ( image_id INT PRIMARY KEY, ... Read more