
getting bigint and BigInteger to work..
Has anyone managed to retrieve bigint values from SQL2000
using the JDBC driver like the following:
...
<B>
ResultSet rs = stmt.execute(...);
BigInteger b = rs.getBigInteger("SomeBigInteger");
</B>
...
I always get an error when trying to do this. Something
about the driver not supporting TDS_INT8 type or
something. Can anyone help?
-Kilwrath