Hacker News new | ask | show | jobs
by jonotime 358 days ago
How do you use only sockets to talk to sqlite?
1 comments

Why do you need to do that when Python has built in sqlite3 support?
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)