Re: [Tutor] Standard module sqlite3 or APSW?

2017-09-09 Thread leam hall
On Sat, Sep 9, 2017 at 8:56 PM, boB Stepp wrote: > First, if I have not misinterpreted anything, the subject header is > perhaps better written as "pysqlite or APSW?" As far as I can tell > from reading the documentation at > https://docs.python.org/3/library/sqlite3.html , the module sqlite3 is

[Tutor] Standard module sqlite3 or APSW?

2017-09-09 Thread boB Stepp
First, if I have not misinterpreted anything, the subject header is perhaps better written as "pysqlite or APSW?" As far as I can tell from reading the documentation at https://docs.python.org/3/library/sqlite3.html , the module sqlite3 is in actuality using the pysqlite project. So if all of thi

Re: [Tutor] How is database creation normally handled?

2017-09-09 Thread leam hall
On Sat, Sep 9, 2017 at 8:29 PM, boB Stepp wrote: > While reading about SQL, SQLite and the Python module sqlite3, it > appears that I could (1) have a program check for the existence of the > program's database, and if not found, create it, make the tables, > etc.; or, (2) create the database sep

[Tutor] How is database creation normally handled?

2017-09-09 Thread boB Stepp
While reading about SQL, SQLite and the Python module sqlite3, it appears that I could (1) have a program check for the existence of the program's database, and if not found, create it, make the tables, etc.; or, (2) create the database separately and include it with the program. What are the pros