rs.updateDate("F4", new java.sql.Date(System.currentTimeMillis()));
rs.updateTime("F5", new java.sql.Time(System.currentTimeMillis()));
rs.updateByte("F6", (byte) 6);
rs.updateShort("F7", (short) 77);
rs.updateInt("F8", 77);
rs.updateLong("F9", 99);
rs.updateBigDecimal("F10", new BigDecimal("10"));
rs.updateTimestamp("F11", new java.sql.Timestamp(System.currentTimeMillis()));
rs.updateBytes("F12", new byte[300]);
rs.updateBinaryStream("F12", null);
rs.updateBinaryStream("F12", null, 0);