Method getLong(int columnIndex)
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 assertEquals(l, rs.getLong(1));
2 assertEquals((long) 0, rs.getLong(1));
3 return new Long(rs.getLong(1));
4 long id = rset.getLong(1);
5 obj = new Long(rs.getLong(1));
6 long timestamp = rs.getLong(2);
7 lOID = new Long(resultSet.getLong(1));
8 group_pk = rs.getLong(1);
9 long currMax = rs.getLong(1);
10 long id = rset.getLong(1);
11 userNumber = rs.getLong(1);
12 long res = rs.getLong(sqlIndex);
13 return new Long(rs.getLong(mapping.getColumnIndex().intValue()));
14 return (Long) handleNullReturn(new Long(i_resultSet.getLong(column)));
15 row.setColumn(name, results.getLong(i));
16 row.add(new Long(set.getLong(i)));
17 longVal = rs.getLong(columnId);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.