Skip to content

Commit

Permalink
Merge branch 'main' into update-sqlite3-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
emdneto authored Dec 11, 2024
2 parents bb0aeeb + e32aac7 commit 2e8dccd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@
SQLite3Instrumentor().instrument()
cnx = sqlite3.connect('example.db')
cnx = sqlite3.connect(':memory:')
cursor = cnx.cursor()
cursor.execute("CREATE TABLE test (testField INTEGER)")
cursor.execute("INSERT INTO test (testField) VALUES (123)")
cursor.close()
cnx.close()
Expand Down

0 comments on commit 2e8dccd

Please sign in to comment.