2022-03-17 13:07:35 +01:00
|
|
|
# TODO: Datenbank Klasse (CRUD)
|
2022-03-18 12:55:29 +01:00
|
|
|
|
2022-03-18 09:29:41 +01:00
|
|
|
import mysql.connector
|
2022-03-17 13:22:44 +01:00
|
|
|
|
|
|
|
|
2022-03-18 12:30:09 +01:00
|
|
|
# Create Database or Table
|
2022-03-18 15:06:02 +01:00
|
|
|
def create(db_cursor, name, type_):
|
|
|
|
query = f'CREATE {type_} {name}'
|
2022-03-18 09:26:05 +01:00
|
|
|
try:
|
|
|
|
db_cursor.execute(query)
|
2022-03-18 09:29:41 +01:00
|
|
|
except mysql.connector.Error as err:
|
2022-03-18 09:26:05 +01:00
|
|
|
print('Something went wrong', err)
|
2022-03-17 13:07:35 +01:00
|
|
|
|
|
|
|
|
2022-03-18 15:06:02 +01:00
|
|
|
def add(db_cursor, name, type_):
|
|
|
|
# TODO
|
2022-03-17 13:07:35 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
|
2022-03-18 15:06:02 +01:00
|
|
|
def read(db_cursor, name, type_):
|
|
|
|
# TODO
|
2022-03-17 13:07:35 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
|
2022-03-18 15:06:02 +01:00
|
|
|
def update(db_cursor, name, type_):
|
|
|
|
# TODO
|
2022-03-17 13:07:35 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
|
2022-03-18 15:06:02 +01:00
|
|
|
def del_(db_cursor, name, type_):
|
|
|
|
query = f'DROP if exists {type_} {name}'
|
|
|
|
try:
|
|
|
|
db_cursor.execute(query)
|
|
|
|
except mysql.connector.Error as err:
|
|
|
|
print('Something went wrong', err)
|
|
|
|
|
|
|
|
|