Last active
August 22, 2020 06:12
-
-
Save BexTuychiev/da3ace52e91e8433943b766db9f79c91 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
connection = sqlite_connect('sample.db') | |
cursor = connection.cursor() | |
sql_create_table_query = """ | |
CREATE TABLE audio (name TEXT NOT NULL, data BLOB); | |
""" | |
cursor.execute(sql_create_table_query) | |
connection.commit() | |
connection.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment