> I use the following code to query a column that contains a long data
> type in an Oracle DB.
Hi. It may have to do with the fact that you select different columns
and/or in a different order. Some JDBC drivers only allow columns to be
retrieved in the order they come from the query, especially when
a LONG/BLOB column is included. Try getting the rs.getString("XLATLONGNAME")
and rs.getString("DESCR254_MIXED") done the same in each mode, and you
will find the solution.
Joe Weinstein at BEA
> *******
>
[quoted text clipped - 58 lines]
> Thanks in advance,
> Matt
Matt C - 24 Nov 2003 14:16 GMT
You hit the nail on the head! I guess you learn something new everyday.
Thanks!
> > I use the following code to query a column that contains a long data
> > type in an Oracle DB.
[quoted text clipped - 70 lines]
> > Thanks in advance,
> > Matt