Different implementations of the Python DB-API allow different placeholders, so you need to find out which one you are using - probably (e.g. using MySQLdb):
cursor.execute("INSERT INTO table VALUES (%s, %s, %s)", (var1, var2, var3))
Or (for example, using sqlite3 from the Python standard library):
cursor.execute("INSERT INTO table VALUES (?, ?, ?)", (var1, var2, var3))
or other (afterVALUESyou can have(:1, :2, :3)or "named style"(:fee, : fie, :fo)or(%(fee)s, %(fie)s, %(fo)s)where you pass a dictionary instead of a map as the second argument toimplement). Check theparamstylestring constants in the DB API module you are using and see all parameters athttp://www.python.org/dev/peps/pep-0249/What a delivery style!
Different implementations of the Python DB-API allow different placeholders, so you need to find out which one you are using - probably (e.g. using MySQLdb):
cursor.execute("INSERT INTO table VALUES (%s, %s, %s)", (var1, var2, var3))Or (for example, using sqlite3 from the Python standard library):
cursor.execute("INSERT INTO table VALUES (?, ?, ?)", (var1, var2, var3))or other (after
VALUESyou can have(:1, :2, :3)or "named style"(:fee, : fie, :fo)or(%(fee)s, %(fie)s, %(fo)s)where you pass a dictionary instead of a map as the second argument toimplement). Check theparamstylestring constants in the DB API module you are using and see all parameters athttp://www.python.org/dev/peps/pep-0249/What a delivery style!cursor.execute("INSERT INTO table VALUES (%s, %s, %s)", (var1, var2, var3))Please note that parameters are passed in tuples,
(a, b, c). If you pass a single argument, the tuple needs to end with a comma,(a,).Database API properly escapes and quotes variables. Be careful not to use the string formatting operator (
%) because