We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
`
Because of string encoding (mixing bytes and str) need to patch fbcore.py: ` @@ -783,7 +783,7 @@ def create_database(sql='', sql_dialect=3, dsn='', user=None, password=None, else: dsn = database
dsn = b(dsn,_FS_ENCODING)
#dsn = b(dsn,_FS_ENCODING) # Parameter checks
@@ -801,7 +801,9 @@ def create_database(sql='', sql_dialect=3, dsn='', user=None, password=None, trans_handle = isc_tr_handle(0) db_handle = isc_db_handle(0)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
`
Because of string encoding (mixing bytes and str) need to patch fbcore.py:
`
@@ -783,7 +783,7 @@ def create_database(sql='', sql_dialect=3, dsn='', user=None, password=None,
else:
dsn = database
@@ -801,7 +801,9 @@ def create_database(sql='', sql_dialect=3, dsn='', user=None, password=None,
trans_handle = isc_tr_handle(0)
db_handle = isc_db_handle(0)
xsqlda = xsqlda_factory(1)
For yet unknown reason, the isc_dsql_execute_immediate segfaults when
NULL (None) is passed as XSQLDA, so we provide one here
api.isc_dsql_execute_immediate(isc_status, db_handle, trans_handle,`
`
The text was updated successfully, but these errors were encountered: