Method getTimestamp(int columnIndex)
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
assertNotNull(rs.getTimestamp(1));
2
assertNull(rs.getTimestamp(1));
3
m_PayDate = rs.getTimestamp(2);
4
t = rs.getTimestamp(1);
5
t = rs.getTimestamp(1);
6
long lastUpdated = rsListMessages.getTimestamp(3).getTime();
7
pi.addLog (rs.getInt(1), rs.getInt(2), rs.getTimestamp(3), rs.getBigDecimal(4), rs.getString(5));
8
Date startDate = rset.getTimestamp(5);
9
java.sql.Timestamp res = rs.getTimestamp(sqlIndex);
10
if (p_rs.getTimestamp(p_columnIndex) != null) {
11
java.sql.Timestamp timestamp = rs.getTimestamp(mapping.getColumnIndex().intValue());
12
row.setColumn(name, results.getTimestamp(i));
13
row.add(set.getTimestamp(i));
14
result = rs.getTimestamp(columnId);
15
newprop.setDateValue(rs.getTimestamp(i+1+offset));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.