execute 2 3 positional arguments code example
Example: execute 2 3 positional arguments
cursor.execute( slq, ( param1, param2, ... ) )
# this is all a tuple - hence the 2nd allowed param to execute.
cursor.execute( slq, ( param1, param2, ... ) )
# this is all a tuple - hence the 2nd allowed param to execute.