[ANN] pysqlite 2.0.alpha1

Gerhard Haering gh at ghaering.de
Tue Nov 2 19:22:00 EST 2004


pysqlite 2.0.alpha1
===================

This is the first alpha release for the 2.0 branch. Python 2.3/2.4 and
SQLite 3.0 are required.

The changelog to 1.1 is easy:
What changed? All :-P

More seriously, it should be DB-API compliant. Which in itself doesn't
say very much about usefulness, but it has all the features that the
DB-API requires, plus a few optional ones.

In particular, it supports iterating over cursors:

    cu = cx.cursor()
    cu.execute("select ...")
    for row in cu:
        ...

PgResultSet is gone, and no advanced type system is implemented yet,
so only the types that SQLite supports work transparently now (int,
float, string, binary).

But for quite some applications, this should be enough. So please give
it a whirl :-)

Downloads (source and win32 binaries) at Sourceforge:
http://sourceforge.net/project/showfiles.php?group_id=54058&package_id=134545

-- Gerhard
-- 
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 196 bytes
Desc: Digital signature
URL: <http://mail.python.org/pipermail/python-list/attachments/20041103/508a1952/attachment.sig>


More information about the Python-list mailing list