On Wed, 09 Nov 2005 17:57:46 +0000, Steve Holden <[EMAIL PROTECTED]> wrote:
>Gerhard Häring wrote:
>> Vittorio wrote:
>>
> [snip]
>>
>> I think about the only place I wrote a bit about the differences was in
>> the pysqlite 2.0 final announcement:
>>
>> http://lists.initd.org/pipermail/pysqlite/2005-May/000043.html
>>
>Unfortunately this appears to mean that pysqlite2 isn't fully DB
>API-conformant.
>
> >>> import pysqlite2
> >>> pysqlite2.paramstyle
>Traceback (most recent call last):
>   File "<stdin>", line 1, in ?
>AttributeError: 'module' object has no attribute 'paramstyle'
> >>>

The DB-API2ness is at pysqlite2.dbapi2:

    >>> from pysqlite2 import dbapi2
    >>> dbapi2.paramstyle
    'qmark'
    >>> dbapi2.threadsafety
    1
    >>> 

etc. :)

Jean-Paul
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to