Method getDate(String columnName)
Return type: java.sql.Date
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.getDate("column"));
2 assertNull(rs.getDate("column"));
3 return rs.getDate(mapping.getColumnName());
4 return new BsfDate(p_rs.getDate(p_columnName));
5 java.sql.Date plDate = rs.getDate("ValidFrom");
6 java.sql.Date plDate = rs.getDate("ValidFrom");
7 lstmt.setDate(iPosn,rs.getDate(lsName));
8 value = set.getDate(dbcol);
9 dtVal = rs.getDate(colName);
10 result = rs.getDate(columnId);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.