通过 ODBC 将 codeigniter 3 连接到任何地方的 SQL
Connect codeigniter 3 by ODBC to SQL anywhere
我想通过 odbc 连接到任何地方的 SQL 数据库,但它标记了我这个错误
A PHP Error was encountered
Severity: Warning
Message: odbc_connect(): SQL error: [Microsoft]
[ODBC Driver Manager] The architecture of the specified DSN does not match between the driver and the application., SQL IM014 status in SQLConnect
我的配置如下
$active_group = 'default';
$query_builder = TRUE;
$db['default'] = array(
'dsn' => 'mydsn',
'hostname' => 'localhost',
'username' => 'myusername',
'password' => 'mypassword',
'database' => '',
'dbdriver' => 'odbc',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);
我安装了 32 位 obdc 并阅读我发现驱动程序可能指向 64 位库我不知道是否有人对此有更多了解并可以帮助我
检查您的 PHP 体系结构是否与您的 ODBC 连接相同,例如,如果您的 ODBC 是 x64,则您的 PHP 应该使用 x64 (PHP 7) , 如果你的 ODBC 是 x86 你应该使用 PHP 5.6.
我想通过 odbc 连接到任何地方的 SQL 数据库,但它标记了我这个错误
A PHP Error was encountered
Severity: Warning
Message: odbc_connect(): SQL error: [Microsoft] [ODBC Driver Manager] The architecture of the specified DSN does not match between the driver and the application., SQL IM014 status in SQLConnect
我的配置如下
$active_group = 'default';
$query_builder = TRUE;
$db['default'] = array(
'dsn' => 'mydsn',
'hostname' => 'localhost',
'username' => 'myusername',
'password' => 'mypassword',
'database' => '',
'dbdriver' => 'odbc',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);
我安装了 32 位 obdc 并阅读我发现驱动程序可能指向 64 位库我不知道是否有人对此有更多了解并可以帮助我
检查您的 PHP 体系结构是否与您的 ODBC 连接相同,例如,如果您的 ODBC 是 x64,则您的 PHP 应该使用 x64 (PHP 7) , 如果你的 ODBC 是 x86 你应该使用 PHP 5.6.