31 lines
957 B
Python
31 lines
957 B
Python
import DBA
|
|
from components.ErrorDialog import ErrorDialog
|
|
|
|
|
|
def update_song_in_database(
|
|
song_id: int, edited_column_name: str, user_input_data: str
|
|
):
|
|
"""Updates a field in the database based on an ID
|
|
|
|
Args:
|
|
song_id: the database ID of the song
|
|
edited_column_name: the name of the database column
|
|
user_input_data: the data to input
|
|
|
|
Returns:
|
|
True or False"""
|
|
try:
|
|
with DBA.DBAccess() as db:
|
|
# yeah yeah this is bad... the column names are defined in the program by me so im ok with it because it works
|
|
db.execute(
|
|
f"UPDATE song SET {edited_column_name} = ? WHERE id = ?",
|
|
(user_input_data, song_id),
|
|
)
|
|
except Exception as e:
|
|
dialog = ErrorDialog(
|
|
f"Unable to update [{edited_column_name}] to [{user_input_data}]. ID: {song_id} | {e}"
|
|
)
|
|
dialog.exec_()
|
|
return False
|
|
return True
|