cmd.addParam("e", "12345") ;
int result = cmd.execUpdate() ;
assertEquals(1, result) ;
Rows rows = dc.getRows("select a, b, c, d, e from lob_sample where a = 1") ;
rows.next() ;
long fileSize = k100File.length();
assertEquals(true, fileSize == rows.getString("c").length()) ;
assertEquals(true, fileSize == rows.firstRow().getString("c").length()) ;
InputStream input = rows.getBinaryStream("d") ;
int bcount = 0;
while(input.read() != -1) bcount++ ;
assertEquals(true, fileSize == bcount) ;
input.close() ;
}