Java / JDBC
Which data type do you prefer: byte array or a java.sql.Blob in JDBC?
java.sql.Blob is used when extraction of the data is performed. Blob does not extract any data from the database until we trigger a query to the database.
byte array is used for writing/inserting data to the database.
More Related questions...