About Shiji Pan

CEO of Withdata Software

CLOB

CLOB stands for Character Large Object. It is a data type used in various database management systems to store large amounts of character data, such as long texts, articles, XML documents, and other forms of unstructured text. DB2 CLOB In DB2, CLOB (Character Large Object) is a data type used to ... Read more

Store images in PostgreSQL BYTEA

PostgreSQL BYTEA Type Features BYTEA (byte array) is PostgreSQL’s native binary data type (replaces legacy BLOB support) Supports up to 1GB of binary data (limited by PostgreSQL’s page size and TOAST compression) Two storage formats: Hex (default in PostgreSQL 9.0+) and Escape ... Read more

SQLite BLOB

In SQLite, the BLOB (Binary Large Object) data type is used to store binary data such as images, audio files, or any other non – text data. Here’s a comprehensive guide on working with BLOB in SQLite: 1. Creating a Table with a BLOB Column You can create a table with a BLOB column to ... Read more

MySQL BLOB

In MySQL, the BLOB (Binary Large Object) data types are used to store large amounts of binary data, such as images, audio, and video files. MySQL provides four different BLOB data types, each with different maximum storage capacities: TINYBLOB: Can store up to 255 bytes of binary data. BLOB: Can ... Read more