Re: [sqlite] SQLite wrapper for Swift

2014-08-26 Thread Andreas Kupries
See also https://news.ycombinator.com/item?id=8226962 for discussion. On Tue, Aug 26, 2014 at 9:09 AM, Simon Slavin wrote: > A thin SQLite wrapper for Swift: > > > > Uses Swift variable types. You have to explicitly say what type you want > your valu

[sqlite] SQLite wrapper for Swift

2014-08-26 Thread Simon Slavin
A thin SQLite wrapper for Swift: Uses Swift variable types. You have to explicitly say what type you want your value as. Implements variable binding for security purposes. Implements a date class. I have not checked out how well it does this. Implemen

Re: [sqlite] sqlite wrapper .dll - best way to store result set and expose it to user

2012-08-27 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 27/08/12 16:05, Daniel Dawson wrote: > I am writing a .dll-based wrapper for sqlite3 in C++. Many others have been down that path before. I suggest having a look at their work first. It should also be noted that the existing SQLite API can be use

Re: [sqlite] sqlite wrapper .dll - best way to store result set and expose it to user

2012-08-27 Thread Simon Slavin
On 28 Aug 2012, at 12:05am, Daniel Dawson wrote: > I am writing a .dll-based wrapper for sqlite3 in C++. I recommend you study the ones already available before you reinvent the wheel. Google 'sqlite c++ wrapper'. Simon. ___ sqlite-users mailing li

[sqlite] sqlite wrapper .dll - best way to store result set and expose it to user

2012-08-27 Thread Daniel Dawson
I am writing a .dll-based wrapper for sqlite3 in C++. I am planning on providing functions to do inserts and selects and other things, it is mostly centred around usability for whoever uses the .dll. For example my select function looks like this void* SQL_singleSelect(char *query, ch

Re: [sqlite] SQLite Wrapper

2010-04-28 Thread Toby
Java is written in C (at least, the JVM is). You can connect from Java to C using the Java Native Interface (JNI) - docs here: http://java.sun.com/docs/books/jni/ Here at Oracle we use it all the time - it is slower than writing directly in C, but allows one to extend Java to use the facilities in

Re: [sqlite] SQLite Wrapper

2010-04-28 Thread Toby
Navaneeth - Java wrappers for SQLite3 are available from Christian Werner's site, including a JDBC wrapper. http://www.ch-werner.de/javasqlite/ This is the wrapper that is being shipped with Berkeley DB 11GR2. Toby On Apr 13, 10:17 pm, Navaneeth Sen B wrote: > Hi all, > > I would like to know

Re: [sqlite] SQLite Wrapper

2010-04-14 Thread Andreas Henningsson
Looked at the source code. It is some parts in C also. I did not know that is was possible to mix java and C. You have using a very rare platform. Why do you use mips? My guess is that you have to build it yourself. /Andreas On Wed, Apr 14, 2010 at 11:16 AM, Andreas Henningsson < andreas.hennin

Re: [sqlite] SQLite Wrapper

2010-04-14 Thread Andreas Henningsson
The homepage say this "Jar file containing binaries for: Windows, Linux/x86/amd64, and Mac OS X/ppc/x86/amd64" I don't know how it works. If a SQLite binary is includen in the jar file and it's this binary they talk about. I mean, if it is written in java it should work as long you have a Java ru

Re: [sqlite] SQLite Wrapper

2010-04-14 Thread Navaneeth Sen B
Hi Andreas, I would like to know a couple of things about the wrapper you used : 1. Is that available for mips-linux? 2. Is it available under public license? 3. Does it have any performance issues? Thanks & Regards, Sen On 4/14/2010 1:52 PM, Andreas Henningsson wrote: > I used this on

Re: [sqlite] SQLite Wrapper

2010-04-14 Thread Andreas Henningsson
I used this one http://www.zentus.com/sqlitejdbc/ Works perfect. /Andreas On Wed, Apr 14, 2010 at 7:17 AM, Navaneeth Sen B wrote: > Hi all, > > I would like to know if a java wrapper is available for SQlite3 APIs. > > Regards, > Sen > * > * > > > __

Re: [sqlite] SQLite Wrapper

2010-04-13 Thread Jay A. Kreibich
On Wed, Apr 14, 2010 at 10:47:48AM +0530, Navaneeth Sen B scratched on the wall: > Hi all, > > I would like to know if a java wrapper is available for SQlite3 APIs. Yes: http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers -j -- Jay A. Kreibich < J A Y @ K R E I B I.C H > "Our oppone

[sqlite] SQLite Wrapper

2010-04-13 Thread Navaneeth Sen B
Hi all, I would like to know if a java wrapper is available for SQlite3 APIs. Regards, Sen * * ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

[sqlite] SQLite wrapper

2007-05-03 Thread Cesar Rodas
Hello to every one! I want to ask if there is a Ruby and/or Ruby on Rails SQLite wrapper... Thanks to all. -- Cesar Rodas http://www.cesarodas.com/ http://cesars.users.phpclasses.org/winners.html - I won!!! ;) Mobile Phone: 595 961 974165 Phone: 595 21 645590 [EMAIL PROTECTED] [EMAIL PROTECTED]

Re: [sqlite] SQLite wrapper Java Linux: No suitable driver

2006-05-11 Thread Joe Wilson
--- Pasquale Imbemba <[EMAIL PROTECTED]> wrote: > I am using the sqlite wrapper by Christian Werner for Java on my Linux > machine. I use eclipse and I have create da new project which contains > the SQLite.jar stuff. > > Whenever I try to compile, I get the following error: > java.lang.ClassNotFo

RE: [sqlite] SQLite wrapper Java Linux: No suitable driver

2006-05-11 Thread andreas.goetz
You need to have it in your execution path as far as I know- e.g. by copying into the jre/lib folder. Andreas -Original Message- From: Pasquale Imbemba [mailto:[EMAIL PROTECTED] Sent: Donnerstag, 11. Mai 2006 07:42 To: sqlite-users@sqlite.org Subject: Re: [sqlite] SQLite wrapper Java

Re: [sqlite] SQLite wrapper Java Linux: No suitable driver

2006-05-10 Thread Pasquale Imbemba
On 10/05/06, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote: Make sure the sqlite_jni.dll DLL is in your path! Andi I don't have that file, but this libsqlite_jni.so . I understand I must have this also in my build path but I don't figure out how to do it in eclipse. I do Build Path -> Link a

RE: [sqlite] SQLite wrapper Java Linux: No suitable driver

2006-05-10 Thread andreas.goetz
Make sure the sqlite_jni.dll DLL is in your path! Andi -Original Message- From: Pasquale Imbemba [mailto:[EMAIL PROTECTED] Sent: Mittwoch, 10. Mai 2006 18:41 To: SQLite Subject: [sqlite] SQLite wrapper Java Linux: No suitable driver Hi, I am using the sqlite wrapper by Christian

[sqlite] SQLite wrapper Java Linux: No suitable driver

2006-05-10 Thread Pasquale Imbemba
Hi, I am using the sqlite wrapper by Christian Werner for Java on my Linux machine. I use eclipse and I have create da new project which contains the SQLite.jar stuff. My code looks like this: import SQLite.JDBCDriver; import java.sql.DriverManager; import java.sql.Connection; import java.sql.SQ

[sqlite] SQLite Wrapper

2005-06-02 Thread Ben Clewett
All, D. Richard Hipp was kind enough to allow me to upload my wrapper for SQLite. This assists locking problems by copying result table to memory and releasing locks on DB. As well as allowing a very simple API, and a few useful tools. I've uploaded a new version which contains a SQLite sh

Re: [sqlite] sqlite wrapper to prevent locking

2005-04-21 Thread D. Richard Hipp
> I do not unfortunately have any place to host this work. There may be > somebody on this list who knows of a place where this can be published > for any members who may with make use of it. > http://www.sqlite.org/contrib -- D. Richard Hipp <[EMAIL PROTECTED]>

Re: [sqlite] sqlite wrapper to prevent locking

2005-04-21 Thread Kervin L. Pierre
Ben Clewett wrote: I do not unfortunately have any place to host this work. There may be somebody on this list who knows of a place where this can be published for any members who may with make use of it. http://sourceforge.net/ ?

[sqlite] sqlite wrapper to prevent locking

2005-04-21 Thread Ben Clewett
Dear users, I have attached another version of my wrapper for SQLite. This returns a table in memory and releases all locks. Therefore providing a safer, simpler and very useful API. This version uses less memory, gets meta-data and fixes a bug or two. This version also provides some streaming f