[sqlite] Java wrapper

2004-01-05 Thread Tim Anderson
I'd like to hear from users of the Java wrapper at http://www.ch-werner.de/javasqlite/. It is marked as "experimental" but as far as I know is the only Java wrapper available. Has anyone any comments concerning the reliability of this wrapper or any other features or limitations? Or know of any o

[sqlite] java wrapper JDBC

2004-03-17 Thread boysen
Hallo, as just discovered with the help of this mailing list, the Java wrapper from http://www.ch-werner.de/javasqlite/ turned out to be a bit slow in returning large result sets. Does anybody know of another Java wrapper resp. JDBC driver for SQLite? Best, Bo --

[sqlite] SQLite Java Wrapper?

2005-05-13 Thread majed chatti
I tried to use the SQLite Java Wrapper wich I download froh here http://www.ch-werner.de/javasqlite/ I extract it I do $./configure $make but I have this errors ./libtool gcc -I -o native/mkconst native/mkconst.c \ /usr/local/lib/libsqlite3.la gcc -I -o native/mkconst native/mkconst.c

[sqlite] java wrapper question solved

2005-08-23 Thread Jim McNamara
hi- it is printing data in the console. i ran across some code that helped. thanks, jim new code /* * Created on Aug 23, 2005 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package calcpackage; import java

[sqlite] Java Wrapper for SQLite3

2004-09-13 Thread [EMAIL PROTECTED]
Hello, is there a stable and tested java (1.5) wrapper for sqlite3 out? Very best regards -- ### # # alex-t.de # Softwareentwicklung & Webentwicklung # Alex Tugarev # -- # mobil: (+49 179) 909 379 2 # privat: (

Re: [sqlite] SQLite Java Wrapper?

2005-05-14 Thread Christian Werner
majed chatti wrote: > > I tried to use the SQLite Java Wrapper wich I > download froh here http://www.ch-werner.de/javasqlite/ > I extract it > I do > > $./configure > $make > > but I have this errors > Please try out the new version from the above

Re: [sqlite] SQLite Java Wrapper?

2005-05-14 Thread majed chatti
I tried this version javasqlite-20050514.tar.gz I think it's the newest one. If there is a newest one send me the url pleas thanks for help Christian Werner <[EMAIL PROTECTED]> a écrit: majed chatti wrote: > > I tried to use the SQLite Java Wrapper wich I > download fro

[sqlite] Java wrapper for both windows and linux

2007-03-28 Thread Jim Dodgen
Hello, first off I am not a java guy. I'm a perl C guy. I am getting involved in a upcoming project that needs a java wrapper that will work for both windows and linux. Any preferences? - To unsubscribe, send email

Re: [sqlite] Java wrapper for both windows and linux

2007-03-29 Thread Xavier RAYNAUD
Hi Jim, Jim Dodgen a écrit : Hello, first off I am not a java guy. I'm a perl C guy. I am getting involved in a upcoming project that needs a java wrapper that will work for both windows and linux. Any preferences? I currently use this one: http://www.zentus.com/sqlitejdbc/ o The nestedV

Re: [sqlite] Java wrapper for both windows and linux

2007-03-29 Thread Randy J. Ray
On 3/29/07, Xavier RAYNAUD <[EMAIL PROTECTED]> wrote: I currently use this one: http://www.zentus.com/sqlitejdbc/ o The nestedVM will work for both windows and linux, but you will loose performance. o The native JNI libraries are faster, but do not work for both windows and linux. I have bee

Re: [sqlite] Java wrapper for both windows and linux

2007-03-29 Thread BardzoTajneKonto
> I have been unable to get this package to compile under Linux. Do you use it > in Linux, or Windows? I remember I also had problem compiling this. It didnt find some executable. I'v downloaded missing executable, put it in PATH and there were no other problems. But actually it isn't necessary

Re: [sqlite] Java wrapper for both windows and linux

2007-03-30 Thread mohsen ahmadian
Hello All iam java starter and love sqlite . when i download java wraper for sqlite this is good work in windows but it cant work in linux .i have this exception "not found libraryjsqlite.so" Althought, i download sqlite.so and rename to it .where is solution On 3/30/07, [EMAIL PROTECTED] <[EMAIL

Re: [sqlite] Java wrapper for both windows and linux

2007-03-30 Thread BardzoTajneKonto
> Hello All > iam java starter and love sqlite . when i download java wraper for sqlite > this is good work in windows but it cant work in linux .i have this > exception "not found libraryjsqlite.so" Althought, i download sqlite.so and > rename to it .where is solution export LD_LIBRARY_PATH=di

[sqlite] SQLite.Exception: not authorized (to load a shared library with SQLite Java Wrapper/JDBC Driver)

2009-02-18 Thread Bejay Bamboo
Hello, i'm trying to load new SQL functions from a shared library with the help of the SQLite Java Wrapper/JDBC Driver (http://www.ch-werner.de/javasqlite). I'm trying java -cp :. -Djava.library.path=/tmp/javasqlite-20090213/.libs SQLite.Shell db "select load_extension('/tmp/

Re: [sqlite] SQLite.Exception: not authorized (to load a shared librarywith SQLite Java Wrapper/JDBC Driver)

2009-02-18 Thread Christian Werner
Bejay Bamboo wrote: > > Hello, > i'm trying to load new SQL functions from a shared library with the > help of the SQLite Java > Wrapper/JDBC Driver (http://www.ch-werner.de/javasqlite). I'm trying > > java -cp :. -Djava.library.path=/tmp/javasqlite-20090213/

Re: [sqlite] SQLite.Exception: not authorized (to load a shared librarywith SQLite Java Wrapper/JDBC Driver)

2009-02-18 Thread Bejay Bamboo
hristian Thanks Christian for the hint. I understand that for SQLite to enable this by default is a security issue, which could allow attackers to load malicious libraries. So I recompiled the SQLite Java Wrapper/JDBC Driver: CFLAGS=-DSQLITE_ENABLE_LOAD_EXTENSION=1 ./configure --with-sqlite3=/tmp