Ich versuche, einen Wert in ein Python-Skript einzufügen, und ich bekomme keine Fehler, aber es ist nicht in der SQL-Datei angezeigt und ich kann keine Dokumentation finden, die mir hilft zu verstehen, warum es nicht angezeigt wird.Sql Insert-Anweisung zeigt nichts an
Hier ist der Code
#Connect the db to this python script
top10_connection = connect(database = 'top_ten.db')
#Get a cursor for the database which allows you to make
#and execute sql queries in this script
top_ten_db = top10_connection.cursor()
top_ten_db.execute("INSERT INTO Top_Ten (Rank) VALUES(1)")
top10_connection.close()
ist dies Ihre ganze Code, geben Sie bitte alle Ihre Code – WildCard