rs.getAsciiStream("F13");
rs.getCharacterStream("F14");
rs.getObject("F15", new HashMap<String, Class<?>>());
rs.updateFloat("F1", 2F);
rs.updateDouble("F2", 2D);
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);