我尝试通过使用以下命令从BLOB数据类型中获取字符串
Blob blob = rs.getBlob(cloumnName[i]);
byte[] bdata = blob.getBytes(1, (int) blob.length());
String s = new String(bdata);
它工作得很好,但当我要将String
转换为Blob
并尝试插入到数据库中时,然后没有插入到数据库中。我使用了以下代码将String转换为Blob:
String value = (s);
byte[] buff = value.getBytes();
Blob blob = new SerialBlob(buff);
有没有人能帮我把Blob
转换成String
,把String
转换成Blob
?
发布于 2013-07-01 17:06:45
试试这个(a2是BLOB col)
PreparedStatement ps1 = conn.prepareStatement("update t1 set a2=? where id=1");
Blob blob = conn.createBlob();
blob.setBytes(1, str.getBytes());
ps1.setBlob(1, blob);
ps1.executeUpdate();
即使没有BLOB也可以工作,驱动程序会自动转换类型:
ps1.setBytes(1, str.getBytes);
ps1.setString(1, str);
此外,如果你使用文本,CLOB似乎是一种更自然的col型
发布于 2013-07-01 16:58:26
使用此选项可将字符串转换为Blob。其中connection是到db对象的连接。
String strContent = s;
byte[] byteConent = strContent.getBytes();
Blob blob = connection.createBlob();//Where connection is the connection to db object.
blob.setBytes(1, byteContent);
发布于 2013-07-01 16:53:51
如何将blob设置为DB?您应该执行以下操作:
//imagine u have a a prepared statement like:
PreparedStatement ps = conn.prepareStatement("INSERT INTO table VALUES (?)");
String blobString= "This is the string u want to convert to Blob";
oracle.sql.BLOB myBlob = oracle.sql.BLOB.createTemporary(conn, false,oracle.sql.BLOB.DURATION_SESSION);
byte[] buff = blobString.getBytes();
myBlob.putBytes(1,buff);
ps.setBlob(1, myBlob);
ps.executeUpdate();
https://stackoverflow.com/questions/17400497
复制相似问题