OCT: 修改ODBC连接的MYSQL数据库名称

RCA:
SOL:
修改人:孟庆超
检视人:孟庆超
This commit is contained in:
mengqingchao 2019-09-03 15:18:11 +08:00
parent 4666afe45e
commit 4b577d0da8
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ void * connect_database (int module_id)
SQLSetConnectAttr( hdbc, SQL_ATTR_ODBC_CURSORS, (SQLPOINTER)SQL_CUR_USE_ODBC, 0 );
ret = SQLConnect( hdbc, "meng", SQL_NTS, "", SQL_NTS, "", SQL_NTS );
ret = SQLConnect( hdbc, "mysql", SQL_NTS, "", SQL_NTS, "", SQL_NTS );
if (ret != SQL_SUCCESS)
{
return NULL;