top | item 44349998

(no title)

jonotime | 8 months ago

How do you use only sockets to talk to sqlite?

discuss

order

rednafi|8 months ago

Why do you need to do that when Python has built in sqlite3 support?

TZubiri|8 months ago

Right, my bad, I was thinking of psql or mysql.

If you had to use sqlite without library, you can trivially call the c api from python directly with the ctypes builtin (or compile a python module with c api)