You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cursor.execute("SELECT ? FROM DUAL");
cursor.execute("SELECT ?, ? FROM DUAL", []);
must fail with an exception such as "wrong number of parameters specified, expected X got Y". Otherwise, simple typos may lead to data loss or wrong results.
Others fail with an exception "TypeError: init() takes exactly 2 arguments (1 given)" which is not very informative.
The text was updated successfully, but these errors were encountered:
Statements such as:
must fail with an exception such as "wrong number of parameters specified, expected X got Y". Otherwise, simple typos may lead to data loss or wrong results.
Others fail with an exception "TypeError: init() takes exactly 2 arguments (1 given)" which is not very informative.
The text was updated successfully, but these errors were encountered: