hello, i've a blob field in table. the preparedstatement equivalent code would look like this :
pst.setBinaryStream(3, new ByteArrayInputStream(messageVO.getAttachment()), messageVO.getAttachment().length); setBinayStream takes 2 parameters. how can i perform the update with QueryRunner ? does it support blob ?
