You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/sqlite3_howto/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ _\-- written by Sebastian Raschka_ on March 7, 2014
29
29
• Conclusion
30
30
31
31
The complete Python code that I am using in this tutorial can be downloaded
32
-
from my GitHub repository: [https://github.com/rasbt/python_reference/tutorials/sqlite3_howto](https://github.com/rasbt/python_reference/tutorials/sqlite3_howto)
32
+
from my GitHub repository: [https://github.com/rasbt/python_reference/tree/master/tutorials/sqlite3_howto](https://github.com/rasbt/python_reference/tree/master/tutorials/sqlite3_howto)
33
33
34
34
35
35
* * *
@@ -97,7 +97,7 @@ there is more information about PRIMARY KEYs further down in this section).
97
97
98
98
99
99
100
-
mport sqlite3
100
+
import sqlite3
101
101
102
102
sqlite_file = 'my_first_db.sqlite' # name of the sqlite database file
103
103
table_name1 = 'my_table_1' # name of the table to be created
0 commit comments