What is the difference between the sqlite and pysqlite2 / sqlite3 modules?

I refused the operation of "sqlite3", but I just found out (using ("modules")) that I have a module "sqlite". I tested it (create a table, insert some values, etc.), and it works fine. But before I start using this module, I would like to know if it has some significant limitations compared to the sqlite3 module? Could anyone, begging, consult?

Thanks in advance.

+3
source share
1 answer

, , :

>>> import sqlite
>>> sqlite.version
'1.0.1'
>>> sqlite._sqlite.sqlite_version()
'2.8.16'

, , ?

pysqlite 2.3.4 2.5.5 ( 2 ) - , 2.3.2, sqlite3, Python 2.5 2.4.1, Python 2.6, , , ( ), 1.0.1 , , 2.3.2! ...; -).

pysqlite ; ( LaTex) ; !

+6

Source: https://habr.com/ru/post/1718605/


All Articles