What is the easiest way to convert byte array into Blob data type in MYSQL with java programming language?
相关问题
- Views base64 encoded blob in HTML with PHP
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
Blob fileBlob = new javax.sql.rowset.serial.SerialBlob(byteArray);
You may try this one, if you are using hibernate.. Possibly the easiest way! :)