Re: DBTags and Memo fields

2001-06-11 Thread Morgan Delagrange
Well, I checked it out, and it appears that, in your case, the drivers should be using getColumn: ResultSetMetaData meta = getMetaData(); String string = null; switch (meta.getColumnType(position)) { case (Types.CLOB): try { string = readClob(rset.getClob

Re: DBTags and Memo fields

2001-06-11 Thread Morgan Delagrange
Ah, that's interesting. If memo fields don't return one of the standard JDBC constants, that might cause unpredictable behaviour. Let me take a look see and make sure that it will default to getColumn(). On Fri, 8 Jun 2001, Yiyi Sun wrote: > As I said we cannot use DBTags with jdbc-odbc. I thi