-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 24/09/13 16:37, Neville Dastur wrote: > That's a very interesting concept.
I've been doing it since 2004, and support all versions of Python from 2.3 onwards including 3.x. > Are you using http://www.cython.org/ or something else to "create" the > library wrapper Nope. I write good old fashioned C code against the CPython API. https://code.google.com/p/apsw/source/browse/src This where sqlite3.c gets #included followed by the other files a few lines later. https://code.google.com/p/apsw/source/browse/src/apsw.c#46 Cython didn't exist when I started, but SWIG did. However it required a lot of scaffolding and wasn't worth it. My resulting code performs better than Python's somewhat standard sqlite3 module, and has far better testing, as well as complete coverage of the SQLite API. http://apidoc.apsw.googlecode.com/hg/pysqlite.html Roger -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iEYEARECAAYFAlJCZOcACgkQmOOfHg372QRaYwCgqoR4C9DmXg27SCbOXg2a4GNe vyUAnRYFf8Uej21hrJTkhwXJWddkvYWi =bKyX -----END PGP SIGNATURE----- _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

