The table columns have the data type BLOB and CLOB.
What are the corresponding Java data types?
I am using MySQL database.
|
|
|
BLOB and CLOB are bytes strings stored in database. In MySQL, you can have an entity with a field of byte array representing your BLOB / CLOB. E.g.
On JDBC, create a
|
|||||
|
|