sqlite3 module differences

The sqlite3 standard module and APSW approached the problem of providing access to SQLite from Python from fundamentally different directions.

APSW provides access in whatever way is normal for SQLite. It makes no effort to hide how SQLite is different from other databases.

sqlite3 tries to provide a DBAPI compliant wrapper for SQLite and in doing so needs to make it have the same behaviour as other databases. Consequently it does hide some of SQLite’s nuances.

Note

I suggest using APSW when you want to directly use SQLite and its functionality or are using your own code to deal with database independence rather than DBAPI. Use sqlite3 and DBAPI if your needs are simple, and you don’t want to use SQLite features.

What APSW does better

APSW has the following enhancements/differences over the sqlite3 module:

  • APSW stays up to date with SQLite. As features are added and functionality changed in SQLite, APSW tracks them.

  • APSW gives all functionality of SQLite including virtual tables, Virtual File System (VFS), BLOB I/O, backups and file control.

  • You can use the same Connection across threads with APSW without needing any additional level of locking. sqlite3 requires that the Connection and any cursors are used in the same thread. You can disable its checking, but unless you are very careful with your own mutexes you will have a crash or a deadlock.

  • APSW build instructions show you how to include SQLite statically in the extension, avoiding a dependency on system SQLite.

  • Nothing happens behind your back. By default sqlite3 tries to manage transactions (for DBAPI compliance) by parsing your SQL for you, but you can turn it off. This can result in very unexpected behaviour with sqlite3.

  • When using a Connection as a context manager APSW uses SQLite’s ability to have nested transactions. sqlite3 has a context manager, but does not implement nesting.

  • You can use semi-colons at the end of commands and you can have multiple commands in the execute string in APSW. There are no restrictions on the type of commands used. For example this will work fine in APSW but is not allowed in sqlite3:

    import apsw
    con=apsw.Connection(":memory:")
    cur=con.cursor()
    for row in cur.execute("create table foo(x,y,z);insert into foo values (?,?,?);"
                           "insert into foo values(?,?,?);select * from foo;drop table foo;"
                           "create table bar(x,y);insert into bar values(?,?);"
                           "insert into bar values(?,?);select * from bar;",
                           (1,2,3,4,5,6,7,8,9,10)):
                               print (row)
    

    And the output as you would expect:

    (1, 2, 3)
    (4, 5, 6)
    (7, 8)
    (9, 10)
    
  • Cursor.executemany() also works with statements that return data such as selects, and you can have multiple statements. sqlite3’s executescript method doesn’t allow any form of data being returned (it silently ignores any returned data).

  • sqlite3 swallows exceptions in your callbacks making it far harder to debug problems. That also prevents you from raising exceptions in your callbacks to be handled in your code that called SQLite. sqlite3 does let you turn on printing of tracebacks but that is a poor substitute.

    APSW does the right thing as demonstrated by this example. APSW converts Python errors into SQLite errors, so SQLite is aware errors happened.

    Source:

    def badfunc(t):
        return 1/0
    
    # sqlite3
    import sqlite3
    
    con = sqlite3.connect(":memory:")
    con.create_function("badfunc", 1, badfunc)
    cur = con.cursor()
    cur.execute("select badfunc(3)")
    
    # apsw
    import apsw
    con = apsw.Connection(":memory:")
    con.createscalarfunction("badfunc", badfunc, 1)
    cur = con.cursor()
    cur.execute("select badfunc(3)")
    

    Exceptions:

    # sqlite3
    
    Traceback (most recent call last):
      File "func.py", line 8, in ?
        cur.execute("select badfunc(3)")
    sqlite3.OperationalError: user-defined function raised exception
    
    # apsw
    
    Traceback (most recent call last):
      File "t.py", line 8, in ?
        cur.execute("select badfunc(3)")
      File "apsw.c", line 3660, in resetcursor
      File "apsw.c", line 1871, in user-defined-scalar-badfunc
      File "t.py", line 3, in badfunc
        return 1/0
    
  • APSW has significantly enhanced debuggability. More details are available than just what is printed out when exceptions happen like above. See augmented stack traces

  • APSW has better execution and row tracing. Various interesting and useful bits of functionality provides accessing rows by column name, type conversion, getting query details etc.

  • APSW has an apswtrace utility script that traces execution and results in your code without having to modify it in any way. It also outputs summary reports making it easy to see what your most time consuming queries are, which are most popular etc.

  • APSW has an exception corresponding to each SQLite error code and provides the extended error code. sqlite3 combines several SQLite error codes into corresponding DBAPI exceptions. This is a good example of the difference in approach of the two wrappers.

  • The APSW test suite is larger and tests more functionality. Virtually every failure condition is tested including running out of memory, error returns etc. Code coverage by the test suite is 99.6%. sqlite3 is good at 81% for C code although there are several places that coverage can be improved. I haven’t measured code coverage for sqlite3’s Python code. The consequences of this are that APSW catches issues earlier and gives far better diagnostics. As an example try returning an unsupported type from a registered scalar function.

  • APSW is faster than sqlite3 in my testing. Try the speedtest benchmark.

What sqlite3 does better

  • sqlite3 is part of the standard library, and is widely supported by libraries that abstract away the database layer