Web aym.pekori.to

ingres_connect

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.4)

ingres_connect -- Ingres II データベースへの接続をオープンする

説明

resource ingres_connect ( [string database [, string username [, string password]]] )

成功時に Ingres II リンクリソース、失敗した際に FALSE を返します。

ingres_connect() は、 database 、そしてその後に続く [node_id::]dbname[/svr_class] 構文により 指定された Ingres データベースへの接続をオープンします。

いくつかのパラメータが欠けている場合、 ingres_connect() は、 ingres.default_databaseingres.default_useringres.default_password に関して php.ini の値を使用します。

接続は、スクリプトの実行終了時または、このリンクについて ingres_close() がコールされた場合に クローズされます。

他の全ての Ingres 関数は、デフォルトで直近にオープンされたリンクを 使用します。このため、複数のリンクを同時に使用したい場合には、 返された値を保存しておく必要があります。

例 1. ingres_connect() の例

<?php
    $link
= ingres_connect("mydb", "user", "pass")
        or die(
"Could not connect");
    echo
"Connected successfully";
    
ingres_close($link);
?>

例 2. デフォルトリンクを使用する ingres_connect() の例

<?php
    ingres_connect
("mydb", "user", "pass")
        or die(
"Could not connect");
    echo
"Connected successfully";
    
ingres_close();
?>

ingres_pconnect() および ingres_close() も参照ください。