What is the use of BLOB, CLOB datatypes in JDBC

Showing Answers 1 - 6 of 6 Answers

madhuhari

  • Apr 16th, 2007
 

BLOB(Binary Large Object) and CLOB(CharacterLargeObject) are SQL2 datatypes, which are introduced in JDBC 2.0 version.

Suppose you have a requirement like, you want to store your content of resume(large data), then go for BLOB.

By using BLOB,

     1) you can store the content into the database from a file.

     2) you can retrive the content again from database and can store in a file.

MADHU(madhu.sep7@gmail.com)

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions