When I see the examples for pysqlite, there are two use cases for the SQLite library.
from sqlite3 import dbapi2 as sqlite3
and
import sqlite3
Why there are two ways to support the sqlite3 api? What’s the difference between the two? Are they the same? In normal use, which would be preferred.
ADDED
I knew that they are different in terms of namespace, and I wanted ask if they are the same in terms of usage, I mean, do they have the same API set?
They are the same. In the
Lib/directory of my Python installation (v2.6), thesqlite3package contains a__init__.pyfile with this:Which means that the two ways of importing are absolutely identical.
That said, I definitely recommend just using
import sqlite3– as this is the documented approach.