uBridge should use the SQL client when connecting to SQL servers. If an ODBC connection is used the following error may appear:
“connection is busy with results for another command”
This is because the default configuration of the SQL ODBC client does not allow multiple queries on one connection at the same time.
This can be corrected by modifying the ODBC Connection string in the uConnections table in the Uluro databse. The following will need to be added:
MARS_Connection=yes;
This allows Multiple active result sets (MARS) on one connection.
0 Comments