BLOB / CLOB data type

Greetings,
So a BLOB and CLOB datatype, store image XML details. To do what (objective). Isnt this possible with CHAR datatypes?
 
Hello Martin,

mpowell_esq said:
Greetings,
So a BLOB and CLOB datatype, store image XML details. To do what (objective).

I meant it as an example, i.e. store binary data e.g. images in BLOBs, and text e.g. XML in CLOBs.

For example, an archive app for managing docs, that stores the docs and related info in the database.


mpowell_esq said:
Isnt this possible with CHAR datatypes?

Nope. Record size limit is 32K, LOBs can store upto 1GB, among other differences.

Point is, records are designed to store info, in the traditional meaning of the word, and LOBs, well, large chunks of data.
 
funny

LOB ;
Lot
Of
Binary
CLOB;
Corr
Lot
Of
Binary

I appreciate now the terms. How LOB and CLOB, hold file details (the binary breakDown of the file. 10011s ... How Word etc would hold the data)
 
Back
Top