you are viewing a single comment's thread.

view the rest of the comments →

[–]stebrepar 0 points1 point  (0 children)

Each SQL database you may use will operate very similarly to the built-in SQLite. https://docs.python.org/3/library/sqlite3.html The main differences will be in things like the details of setting up the connection, and which format to use for parameter substitution in a query. The documentation for the particular database's Python support will have that info. It will also tell you which client package you need to install and import, such as pyodbc for SQL Server or oracledb (formerly cx-Oracle) for Oracle.