Re: [sqlite] fast Java solution?

2006-07-17 Thread Vitali Lovich
My suggestion to speed up the step call backs would be to have the JNI code do the actual step routine and cache up the pertinent information into an array. Then after it's complete or the cache limit is reached (set the cache limit to a sufficient size such that the time spent processing

Re: [sqlite] fast Java solution?

2006-07-17 Thread Ulrik Petersen
Brannon King wrote: Is there some standard tool that will generate a JNI dll from the sqlite.dll? Have you looked at SWIG? http://www.swig.org It doesn't generate a JNI dll from the sqlite.dll, but does generate a JNI dll from the sqlite sourcecode -- there is a learning curve, so you

[sqlite] fast Java solution?

2006-07-17 Thread Brannon King
So who here has the _fast_ Java solution for accessing SQLite3? Here's what I've done so far. I took the wrapper from wiki page labeled "Java wrapper incl. JDBC driver for SQLite. ¤http://www.ch-werner.de/javasqlite;. I then fixed the calloc calls so that the params were in the right order, fixed