Re: [sqlite] ResultSetMetaData with javasqlite

2009-04-30 Thread Christian Werner
Justin Deoliveira wrote: Hi Justin, > Thanks for the quick response. I am not sure if this will be of any help > or not but I wrote this (very crude) patch to get around the problem: > > http://files.opengeo.org/sqlite_jni.c.patch > > ... Based on your patch there's now a improved version in ht

Re: [sqlite] ResultSetMetaData with javasqlite

2009-04-21 Thread Justin Deoliveira
Hi Christian, Thanks for the quick response. I am not sure if this will be of any help or not but I wrote this (very crude) patch to get around the problem: http://files.opengeo.org/sqlite_jni.c.patch I say "crude" because my C hacking skills leave something to be desired. That and it only han

Re: [sqlite] ResultSetMetaData with javasqlite

2009-04-21 Thread Christian Werner
Justin Deoliveira wrote: Justin, > I have ran into an issue while using the javasqlite jdbc wrapper.The > issue can be illustrated with the following code: > ... you're right, I've verified that behaviour with SQLite 3.x databases. The problem cannot be observed with SQLite 2.x databases

[sqlite] ResultSetMetaData with javasqlite

2009-04-20 Thread Justin Deoliveira
Hi all, I have ran into an issue while using the javasqlite jdbc wrapper.The issue can be illustrated with the following code: import java.sql.*; public class Main { public static void main( String[] args ) throws Exception { Class.forName( "SQLite.JDBCDriver"); Connectio