我必须将图像插入matisse数据库。我如何通过java中的sql insert语句插入它?
答案 0 :(得分:0)
您可以使用java.sql.PreparedStatement将blob
插入数据库。
示例代码:
try{
Connection con = getYourDatabaseConnection();
PreparedStatement statement = con.prepareStatement("INSERT INTO YOUR_TABLE(YOUR_BLOB_COLUMN) VALUES (?)";
statement.setObject(1, yourImage);
statement.execute();
} catch(SQLException e){
e.printStackTrace();
}