DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=34568>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=34568 [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From [EMAIL PROTECTED] 2005-06-08 09:30 ------- Hi Christian, In order for us to make any kind of progress on this issue we would need you to check whether Niall's guess is right. So after you have got the ResultSet object, please add this code then post the results against this bug entry: ResultSetMetaData meta = rs.getMetaData(); int nColumns = meta.getColumnCount(); for(int i=1; i<=nColumns; ++i) { String className = meta.getColumnClassName(i); System.out.println("Column " + i + " has type [" + className + "]"); } Note that the above code hasn't been tested; it's a guideline only. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
