Hello everybody,
I have a script using Python that uses the INSERT statement to input data into a table, using something like the test statement below
cursor.execute(' INSERT INTO tbl_test (fld_PK, fld_value1, fld_value2) VALUES (?,?,?)'),(ID, name, address))
This wont work if I have a...