python-sqlparams
python-sqlparams copied to clipboard
Convert DB API 2.0 named parameters to ordinal parameters.
Results
2
python-sqlparams issues
Sort by
recently updated
recently updated
newest added
Parameters expansion for qmark style generates extra parameters when SQL contains comments. There is an example with workaround inside (see `strip_comments_from_sql`) ```py import sqlparams import json query = sqlparams.SQLParams('named', 'qmark')...
Hi, First of all, thanks for the great module. I noticed that tuple expansion doesn't take into account that empty arrays are not legal in sql. Thus the users need...