Carsten Fosvang
- Total activity 11
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 3
-
Created "Can't connect to the database!"
i really need help here! when i test the file by push testbutton in pycharm i get the message "Can't connect to the database!" When i run the file locally i have 100 pct. connection. GitHub: Fosvan... -
Created get an error '(' AS or OF expected, got NOT...on the sql create table
Answeredimport sqlite3from sqlite3 import Errordef create_connection(db_file): conn = None try: conn = sqlite3.connect(db_file) return conn except Error as e: print(e, "can no...