Search in sources :

Example 1 with UpdateClobBlobBean

use of org.nutz.dao.test.meta.other.UpdateClobBlobBean in project nutz by nutzam.

the class UpdateTest method test_update_clob.

@Test
public void test_update_clob() throws SerialException, SQLException {
    dao.create(UpdateClobBlobBean.class, true);
    UpdateClobBlobBean bean = new UpdateClobBlobBean();
    bean.setManytext(new SerialClob(Strings.dup('8', 4097).toCharArray()));
    bean.setManybinary(new SerialBlob(Strings.dup('9', 4097).getBytes()));
    dao.insert(bean);
    bean.setManytext(new SerialClob(Strings.dup('7', 4097).toCharArray()));
    bean.setManybinary(new SerialBlob(Strings.dup('6', 4097).getBytes()));
    dao.update(bean);
}
Also used : UpdateClobBlobBean(org.nutz.dao.test.meta.other.UpdateClobBlobBean) SerialBlob(javax.sql.rowset.serial.SerialBlob) SerialClob(javax.sql.rowset.serial.SerialClob) Test(org.junit.Test)

Aggregations

SerialBlob (javax.sql.rowset.serial.SerialBlob)1 SerialClob (javax.sql.rowset.serial.SerialClob)1 Test (org.junit.Test)1 UpdateClobBlobBean (org.nutz.dao.test.meta.other.UpdateClobBlobBean)1