Re: [sqlite] I need a SQLite3 Wrapper for Java.

2004-09-18 Thread Christian Werner
"[EMAIL PROTECTED]" wrote: > > Hello, > > and yes I do. I've tried to port, but without success. Please try out http://www.ch-werner.de/javasqlite/javasqlite-20040919.tar.gz Right now (since 3.0.7 is out, big thank you to DRH!) it somewhat began to work on Linux. As usual it is very preliminary

Re: [sqlite] I need a SQLite3 Wrapper for Java.

2004-09-16 Thread Gerhard Häring
Sören Krings wrote: [...] knows anyone a way to write a platfrom independet Java wrapper which include the SQLitelib? No, the JNI code will have to be recompiled for each platform, and either statically or dynamically link to the SQLite library. -- Gerhard

Re: [sqlite] I need a SQLite3 Wrapper for Java.

2004-09-16 Thread Kurt Welgehausen
> I wish to get the count of unique entries in a particular field http://www.sqlite.org/omitted.html

RE: [sqlite] I need a SQLite3 Wrapper for Java.

2004-09-16 Thread Downey, Shawn
Hello, I am new to sqlite and I wish to get the count of unique entries in a particular field. The table is created as follows: create table tablename ( field_id char(10) not null , fieldname char(100) ); create unique index findex on tablename (field_id); I get an error with th

Re: [sqlite] I need a SQLite3 Wrapper for Java.

2004-09-16 Thread [EMAIL PROTECTED]
Hello, and yes I do. I've tried to port, but without success. Best regards Am Thu, 16 Sep 2004 00:31:54 -0700 hat Randy J. Ray <[EMAIL PROTECTED]> geschrieben: Cory Nelson wrote: I take it you were too lazy to look at the SQLite Wrappers section? http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappe

Re: [sqlite] I need a SQLite3 Wrapper for Java.

2004-09-16 Thread Randy J. Ray
Cory Nelson wrote: I take it you were too lazy to look at the SQLite Wrappers section? http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers Perhaps he did, and looked closely enough to notice that both Java wrappers are for SQLite 2.X only. Randy --

Re: [sqlite] I need a SQLite3 Wrapper for Java.

2004-09-15 Thread Cory Nelson
I take it you were too lazy to look at the SQLite Wrappers section? http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers On Thu, 16 Sep 2004 08:23:42 +0200, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello, > > Is there a SQLite3 Wrapper for Java available? Didn't find one. Please > help me.