$connection = db2_connect ( '*LOCAL', PHP_USER_NAME, PHP_USER_PASS );
if (! $connection) {
die('Could not connect');
}
//Prepare and execute the SQL statement.
$stmt = db2_prepare ( $connection, $sqlStatement );
if (! db2_execute ( $stmt ) ) {
Throw New Exception('Could not execute statement');
}
我们在带有 Apache 的 IBM iSeries 上运行 PHP。我们的数据库也在这个 iSeries 上。
正在建立什么样的连接?它是 ODBC 链接吗?如果这因系统而异,我怎么知道?