- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What are Lob Data Types? What are the restrictions on these datatypes in JDBC?
A BLOB is binary large object that can hold a variable amount of data with a maximum length of 65535 characters
These are used to store large amounts of binary data, such as images or other types of files.
A CLOB stands for Character Large Object in general, an SQL Clob is a built-in datatype is used to store large amount of textual data. Using this datatype, you can store data up to 2,147,483,647 characters.
Blob and Clob data types together are known as LOB (Large Object) datatypes. Following are the restrictions on these datatypes.
Cannot compare: We cannot compare CLOB or BLOB datatypes i.e. you cannot use these datatypes with the operators =, !=.
Not Orderable: You cannot arrange BLOB or CLOB datatypes in order i.e. you cannot determine which is greater smaller among two BLOB or CLOB datatypes. In short cannot use <, <=, >, >= with BLOB or CLOB types.
These cannot be used as primary key or index values
Using clauses like DISTINCT, GROUP BY, and ORDER BY with BLOB or CLOB datatypes is not allowed.
Implicit conversion BLOB or CLOB to other datatypes is not possible.
- Related Articles
- What are the data types supported by JDBC?
- What are the types of statements in JDBC?
- What are the restrictions on creating a vector in R?
- What are the restrictions placed on method overloading in java?
- What are the restrictions on increment and decrement operators in java?
- What are the restrictions of regular grammar?
- What are the types of data integrity?
- What are the data types, value types and reference types in C#?
- How many types of Result Sets are there in JDBC What are they?
- What are primitive data types in Java?
- What are reference data types in Java?
- What are primitive data types in JavaScript?
- What are enumerated data types in C++?
- What are Complex Data types in JavaScript?
- What are pointer data types in C#?
