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
This module allows mixing three different styles of query formatting:
SQLAlchemy-style high-level parameter binding
Psycopg2 parameter/identifier binding
DBAPI binding and adaptors
More may be added in the future, e.g., for support of SQLite with similar semantics to Psycopg2
Styles 2 and 3 allow both parameter and identifier binding, but with different semantics. We should make an attempt to inform the user when they are misusing these overlapping features with meaningful error messages.
The text was updated successfully, but these errors were encountered:
This module allows mixing three different styles of query formatting:
More may be added in the future, e.g., for support of SQLite with similar semantics to Psycopg2
Styles 2 and 3 allow both parameter and identifier binding, but with different semantics. We should make an attempt to inform the user when they are misusing these overlapping features with meaningful error messages.
The text was updated successfully, but these errors were encountered: