March 2018
Beginner to intermediate
422 pages
10h 33m
English
A new record needs to be created every time a user enters a new name and a phone number in the entry widgets provided, and then clicks on the Add Record button.
The database query for adding a new record is as follows:
query = 'INSERT INTO contacts VALUES(NULL,?, ?)'parameters = (self.namefield.get(), self.numfield.get())self.execute_db_query(query, parameters)
Read now
Unlock full access