Support for python 2.5's sqlite driver

Issue #494 resolved
Former user created an issue

Is there any chance of having support for something other than a third-party SQLite driver? Python's included one shouldn't be too hard to use, as it follows the standard interface.

Comments (2)

  1. Mike Bayer repo owner

    the built in sqlite driver should be used automatically if present (and no other sqlite driver is present). is this not the case ?

  2. Mike Bayer repo owner

    verified:

    z-eeks-Computer:~/dev/sqlalchemy classic$ /Library/Frameworks/Python.framework/Versions/2.5/bin/python
    Python 2.5 (r25:51918, Sep 19 2006, 08:49:13) 
    [4.0.1 (Apple Computer, Inc. build 5341)](GCC) on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>> from sqlalchemy import *
    >>> e = create_engine('sqlite://')
    >>> e.dialect.dbapi()
    <module 'sqlite3.dbapi2' from '/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/sqlite3/dbapi2.pyc'>
    >>>
    
  3. Log in to comment