mirror of
https://github.com/php/pecl-database-ibm_db2.git
synced 2026-03-23 23:02:16 +01:00
14 lines
183 B
PHP
14 lines
183 B
PHP
<?php
|
|
|
|
require_once('connection.inc');
|
|
|
|
$conn = db2_connect($database, $user, $password);
|
|
|
|
$server = db2_server_info( $conn );
|
|
|
|
if ($server->DBMS_NAME == 'AS') {
|
|
die('skip');
|
|
}
|
|
|
|
?>
|