mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 14:59:39 +00:00
19 lines
474 B
Python
19 lines
474 B
Python
import sqlite3
|
|
from sqlite3 import Error
|
|
|
|
def create_connection(db_file):
|
|
""" create a database connection to a SQLite database """
|
|
conn = None
|
|
try:
|
|
print('Sqlite3 version: ', sqlite3.version)
|
|
conn = sqlite3.connect(db_file)
|
|
conn.enable_load_extension(True)
|
|
except Error as e:
|
|
print(e)
|
|
exit(1)
|
|
finally:
|
|
if conn:
|
|
conn.close()
|
|
|
|
if __name__ == '__main__':
|
|
create_connection(r"pythonsqlite.db") |