Method getLong(String columnName)
Return type: long
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 return new GenreBean(result.getLong("GENREID"),
2 assertEquals(l, rs.getLong("column"));
3 assertEquals((long) 0, rs.getLong("column"));
4 return new ArtistBean(result.getLong("ARTISTID"),
5 return new Long(p_rs.getLong(p_columnName));
6 return new Long(rs.getLong(mapping.getColumnName()));
7 r.getLong("DAT");
8 value = new Long(set.getLong(dbcol));
9 o = new Long(rs.getLong(colNumber));
10 longVal = rs.getLong(columnId);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.