Skip to content Skip to sidebar Skip to footer

Insert In Database The Fields Of 2 Functions Having The Same Combobox. Only The Data Of The First Function Is Saved

I have a database manager, made with tkinter, in which I insert and save the data. It works fine, everything correctly, it saves everything correctly. I tried adding a new insert,

Solution 1:

I'll admit I have no idea what you're asking since you haven't produced an example we can run. You seem to have a function named insert that works, except that it needs to save an extra value. You claim to have a function that gets the value which should be saved. So, the solution seems to be to call the function, save the result, and then pass it to the function that writes it to the database.

def add_employee():
    ...
    id_campionati_value = id_campionati()
    db.insert(campionato.get(), ..., id_campionati_value)

I doubt it will work exactly like that since id_campionati() returns a list rather than a single value. You should probably rewrite id_campionati_value to return a single id.

Post a Comment for "Insert In Database The Fields Of 2 Functions Having The Same Combobox. Only The Data Of The First Function Is Saved"