Forum Moderators: open
You can prepare multiple statements and then execute them together in a transaction. Something like:
transaction = """ insert a into tablea; insert b into tableb; insert c into tablec;"""
sql_execute(transaction)