Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I'm trying to learn SQLite for Python...Best method? [closed]

Tags:

python

sqlite

I've read a few books that touch on SQLite but nothing concrete enough to help me learn it within Python, Question is, is there any book or source you could recommend to help me with this...

Secondly is learning MySQL the same as learning SQLite because I see those resources everywhere...

like image 466
Isov5 Avatar asked Jan 19 '23 19:01

Isov5


1 Answers

You probably want to learn about SQL, variants of which are used by a number of different relational databases, including MySQL and SQLite (which as several comments have pointed out you are mixing together) using the python standard library's sqlite3 module. You can't go wrong with Doug Hellmann's PyMOTW introduction to the sqlite3 module: http://www.doughellmann.com/PyMOTW/sqlite3/.

like image 145
zeekay Avatar answered Jan 28 '23 06:01

zeekay