Method getTimestamp(String columnName)
Return type: java.sql.Timestamp
Member of: java.sql.ResultSet
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 setP_Date(rs.getTimestamp("P_Date"));
2 assertNotNull(rs.getTimestamp("column"));
3 assertNull(rs.getTimestamp("column"));
4 result.getTimestamp("LASTPLAY"));
5 java.sql.Timestamp lastPlay = resultSet.getTimestamp("LASTPLAY");
6 descr.setCreated(rs.getTimestamp("created"));
7 descr.setCreated(rs.getTimestamp("created"));
8 r.getTimestamp("Timestamp?");
9 if (p_rs.getTimestamp(p_columnName) != null) {
10 lstmt.setTimestamp(iPosn,rs.getTimestamp(lsName));
11 java.sql.Timestamp timestamp = rs.getTimestamp(mapping.getColumnName());
12 value = set.getTimestamp(dbcol);
13 o = rs.getTimestamp(colDate);
14 td = rs.getTimestamp(colName);
15 result = rs.getTimestamp(columnId);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.