mySql ब्लॉब क्लास में निम्नलिखित कार्य हैं:
इसे इस तरह इस्तेमाल करें:
//(assuming you have a ResultSet named RS)
Blob blob = rs.getBlob("SomeDatabaseField");
int blobLength = (int) blob.length();
byte[] blobAsBytes = blob.getBytes(1, blobLength);
//release the blob and free up memory. (since JDBC 4.0)
blob.free();