Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: oci_connect - Manual
[go: Go Back, main page]

PHP
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

oci_define_by_name" width="11" height="7"/> <oci_commit
Last updated: Fri, 13 Mar 2009

view this page in

oci_connect

(PHP 5, PECL oci8 >= 1.1.0)

oci_connectOracle サーバへの接続を確立する

説明

resource oci_connect ( string $username , string $password [, string $db [, string $charset [, int $session_mode ]]] )

他のほとんどの OCI コールで必要な接続 ID を返します。

パラメータ

username

Oracle ユーザ名

password

username に対するパスワード

db

このオプションパラメータには、ローカル Oracle インスタンスの名前か tnsnames.ora における接続先のエントリ名を指定することができる。

指定されない場合、PHP は接続先のデータベースを決定するために環境変数 ORACLE_SIDTWO_TASK を使用して、ローカル Oracle インスタンス名と tnsnames.ora の場所を適宜決定する。

charset

Oracle サーバのバージョン 9.2 以降を使用している場合、新規接続を確立する際に charset パラメータを指定することができます。 Oracleサーバ < 9.2 を使用している場合、このパラメータは無視され、 かわりに環境変数 NLS_LANG が使用されます。

session_mode

このパラメータはバージョン 1.1 から利用可能で、 次の値を受け付ける: OCI_DEFAULT, OCI_SYSOPER, OCI_SYSDBAOCI_SYSOPER もしくは OCI_SYSDBA のいずれかが指定された場合、 この関数は外部のクレデンシャルを利用して、 権限付きの接続を確立しようと試みる。 デフォルトでは権限付きの接続は無効である。有効にするためには、oci8.privileged_connectOn にする必要がある。

返り値

接続 ID、もしくはエラー時は FALSE を返す。

例1 oci_connect() の例

<?php
echo "<pre>";
$db "";

$c1 oci_connect("scott""tiger"$db);
$c2 oci_connect("scott""tiger"$db);

function 
create_table($conn)
{
  
$stmt oci_parse($conn"create table scott.hallo (test varchar2(64))");
  
oci_execute($stmt);
  echo 
$conn " created table\n\n";
}

function 
drop_table($conn)
{
  
$stmt oci_parse($conn"drop table scott.hallo");
  
oci_execute($stmt);
  echo 
$conn " dropped table\n\n";
}

function 
insert_data($conn)
{
  
$stmt oci_parse($conn"insert into scott.hallo
            values('
$conn' || ' ' || to_char(sysdate,'DD-MON-YY HH24:MI:SS'))");
  
oci_execute($stmtOCI_DEFAULT);
  echo 
$conn " inserted hallo\n\n";
}

function 
delete_data($conn)
{
  
$stmt oci_parse($conn"delete from scott.hallo");
  
oci_execute($stmtOCI_DEFAULT);
  echo 
$conn " deleted hallo\n\n";
}

function 
commit($conn)
{
  
oci_commit($conn);
  echo 
$conn " committed\n\n";
}

function 
rollback($conn)
{
  
oci_rollback($conn);
  echo 
$conn " rollback\n\n";
}

function 
select_data($conn)
{
  
$stmt oci_parse($conn"select * from scott.hallo");
  
oci_execute($stmtOCI_DEFAULT);
  echo 
$conn."----selecting\n\n";
  while (
oci_fetch($stmt)) {
    echo 
$conn " [" oci_result($stmt"TEST") . "]\n\n";
  }
  echo 
$conn "----done\n\n";
}

create_table($c1);
insert_data($c1);   // c1 を使って行を挿入
insert_data($c2);   // c2 を使って行を挿入

select_data($c1);   // 両方の挿入した結果が返される
select_data($c2);

rollback($c1);      // c1 を使ってロールバック

select_data($c1);   // どちらの挿入もロールバックされている
select_data($c2);

insert_data($c2);   // c2 を使って行を挿入
commit($c2);        // c2 を使ってコミット

select_data($c1);   // c2 の結果が返される

delete_data($c1);   // c1 を使ってテーブル内の全ての行を削除
select_data($c1);   // 行は返されない
select_data($c2);   // 行は返されない
commit($c1);        // c1 を使ってコミット

select_data($c1);   // 行は返されない
select_data($c2);   // 行は返されない

drop_table($c1);
echo 
"</pre>";
?>

注意

注意: もし、Oracle インスタントクライアントとPHPを使用する場合、 次に示す簡単な接続ネーミングメソッドを使用することができます: » http://download-west.oracle.com/docs/cd/B12037_01/network.101/b10775/naming.htm#i498306。 基本的にこれはデータベース名として "//db_host[:port]/database_name" を指定できることを意味する。しかし、古いネーミング方法を使用したい場合、 ORACLE_HOME もしくは TNS_ADMIN のいずれかを設定する 必要があります

注意: 同じパラメータを使用して 2 回目やそれ以降に oci_connect() がコールされた場合、 最初のコールで返された接続ハンドルを返します。 これは 1 つのハンドルに対して発行されたクエリは、 他のハンドルにも適用されることを意味します。なぜなら、 これらは 同じ ハンドルだからです。 この動作は以下の例 1 で例示されています。 もしトランザクション的にお互い独立した 2 つのハンドルが必要な場合、 oci_new_connect() を使用してください。

注意: PHP 5.0.0 以前では、代わりに ocilogon() を使用しなければなりません。 まだこの名前を使用することができ、下位互換性のため oci_connect() への別名として残されていますが、 推奨されません。

参考



oci_define_by_name" width="11" height="7"/> <oci_commit
Last updated: Fri, 13 Mar 2009
 
add a note add a note User Contributed Notes
oci_connect
Pascal
27-Jan-2009 02:59
Regarding the character set the is to be specified, it should be noted that it has to be the character set the client wishes to recieve and not the character set of the database. 

Using this parameter, Oracle will convert the character set of the internal database to the character set specified by the client in this parameter.
nicodenboer (at) yahoo (dot) com
23-Nov-2008 02:35
Hi, I use Oracle Database 10g Express Edition Release
10.2.0.1.0 on a Linux workstation for dev purposes, along
with Apache 2 and PHP5. So far I have used it on Kubuntu 8.04.
To get things working on a recently installed notebook with openSUSE
11.0 was a bit more complicated. So I hope someone will be able to
benefit from our experiences. Here is our howto:

# Use the package manager to install the packages php5-pear and
php5-dev, if not installed yet.

# Download the instantclient_11_1, zip files basic, sdk, sqlplus from the Oracle web site

# Switch to user root here, since not all commands to some work sudo

# Unzip these files to /opt/oracle/.
# As a result you will see a dir instantclient_11_1 appearing.

ln -s /opt/oracle/instantclient_11_1/libclntsh.so.11.1 \
   /opt/oracle/instantclient_11_1/libclntsh.so 
ln -s /opt/oracle/instantclient_11_1/libclntsh.so.11.1 \
   /usr/lib/libclntsh.so
ln -s /opt/oracle/instantclient_11_1/libnnz11.so \
   /usr/lib/libnnz11.so
ldconfig # to make sure the system will be able to find the libs

pecl install oci8 # interactively enter option 1,
# then instantclient,/opt/oracle/instantclient_11_1,
# then enter

# if needed, add extension=oci8.so to your php.ini

/etc/init.d/apache2 reload

# finished!

Kind regards,
Nico den Boer
sixd at php dot net
22-Jul-2008 05:16
From PHP 5.3 onwards:

A new OCI_CRED_EXT flag can be passed as the "session_mode" parameter
to oci_connect(), oci_new_connect() and oci_pconnect().

  $c1 = oci_connect("/", "", $db, null, OCI_CRED_EXT);

This tells Oracle to do external or OS authentication, if configured
in the database.

OCI_CRED_EXT can only be used with username of "/" and a empty
password.  Oci8.privileged_connection may be On or Off. 

OCI_CRED_EXT is not supported on Windows for security reasons.

The new flag may be combined with the existing OCI_SYSOPER or
OCI_SYSDBA modes (note: oci8.privileged_connection needs to be On for
OCI_SYSDBA and OCI_SYSOPER), e.g.:

  $c1 = oci_connect("/", "", $db, null, OCI_CRED_EXT+OCI_SYSOPER);
sixd at php dot net
01-Jul-2008 08:33
If you want to specify a connection timeout in case there is network problem, you can edit the client side (e.g. PHP side) sqlnet.ora file and set SQLNET.OUTBOUND_CONNECT_TIMEOUT. This sets the upper time limit for establishing a connection right through to the DB, including the time for attempts to connect to other services.   It is available from Oracle 10.2.0.3 onwards.

In Oracle 11.1, a slightly lighter-weight solution TCP.CONNECT_TIMEOUT was introduced.  It also is a sqlnet.ora parameter.  It bounds just the TCP connection establishment time, which is mostly where connection problem are seen.

The client sqlnet.ora file should be put in the same directory as the tnsnames.ora file.
sxid at php dot net
21-Jun-2008 07:46
If PHP is built with Oracle 9.2 or greater client libraries, the
charset parameter is used to determine the character set used by the
Oracle client libraries.  When PHP is built with older Oracle client
libraries, or if the parameter is not passed, Oracle NLS environment
variables such as NLS_LANG will be used to determine the character
set.

The character set does not need to match that used by the database.
If it doesn't, Oracle will do its best to convert data to and from the
database character set.  Depending on the character sets, this may not
which may always be give usable or valid results, and it can reduce
overall performance

Because passing the parameter removes the environment look up, it can
improve connection performance
sebastien.barbieri _at_ gmail dot com
14-Sep-2006 01:42
When you are using Oracle 9.2+ I would say that you MUST use the CHARSET parameter.

Of course, you will not notice it until there is accented character... so just specify it and you will avoid a big headache.

So for example here is our Oracle internal conf:
select * from nls_database_parameters;
 
PARAMETER                      VALUE
------------------------------ ----------------------------------------

NLS_LANGUAGE                   AMERICAN
NLS_TERRITORY                  AMERICA
NLS_ISO_CURRENCY               AMERICA
NLS_CHARACTERSET               WE8ISO8859P15

 
And there our oci_connect call:

$dbch=ocilogon($user,$pass,$connectString,"WE8ISO8859P15");

Without that, you will get question mark (inversed), squares… instead of most accented character.

Don’t forget to use that for writing as well as for reading.
greatval <wow> gmail <dot> com
25-Jul-2006 01:30
For use PHPv5 functions in PHPv4 i use simple script:
<?php
$funcs
=array(
       
'oci_connect'=>'OCILogon',
       
'oci_parse'=>'OCIParse',
       
'oci_execute'=>'OCIExecute',
       
'oci_fetch'=>'OCIFetch',
       
'oci_num_fields'=>'OCINumCols',
       
'oci_field_name'=>'OCIColumnName',
       
'oci_result'=>'OCIResult',
       
'oci_free_statement'=>'OCIFreeStatement',
);
// yoy can add yours pairs of funcs.

foreach ($funcs as $k=>$v)
    {
        if (!
function_exists($k))
            {
               
$arg_string='$p0';
                for (
$i=1;$i<20;$i++) {
                   
$arg_string.=',$p'.$i;
                }
                eval (
'function '.$k.' () {
                        list('
.$arg_string.')=func_get_args();
                        return '
.$v.'('.$arg_string.');
                        }
                '
);
            }
    }
?>

simple, but it work. :-)
Javi Ros
02-Jun-2006 11:49
Here are the translate of some functions from ORA to OCI:

<?php
function Ora_Logon($usuario, $password)
{
       
$con = oci_connect($usuario,$password);
        return
$con;
}

function
Ora_Open($conexion) {
       
$cursor[0]=$conexion;
        return
$cursor;
}

function
Ora_Parse(&$cursor, $consulta) {
       
$cursor[1]=oci_parse($cursor[0],$consulta);
        return
$cursor;
}

function
Ora_Exec(&$cursor) {
       
oci_execute($cursor[1]);
       
$cursor[2]=1;
        return
$cursor;
}

function
Ora_Fetch(&$cursor)
{
        if (
$cursor[2] == 1) $cursor[2]=0;
        return
oci_fetch($cursor[1]);
}

function
Ora_GetColumn(&$cursor, $indice)
{
        if (
$cursor[2] == 1) {
               
Ora_Fetch($cursor);
               
$cursor[2]=0;
        }
       
$valor = oci_result($cursor[1],$indice+1);
        return
$valor;
}

function
Ora_Close(&$cursor)
{
        unset(
$cursor[1]);
}

function
Ora_Logoff($conexion) {
}
?>
Andrei
07-Nov-2005 10:08
lost oracle connection. need restart apache?

Temporarely you can prevent 'connection lost' by using folowing script (use it at your own risk):

<?php
$rnum
=rand(0,99999999);
$dbcon = oci_new_connect('XXXXX', 'XXXXXX',
'
(DESCRIPTION =
           (ADDRESS =
        (PROTOCOL = TCP)
        (HOST = XXX.XXX.XXX.XXX)
        (PORT = 1521)
        (HASH = '
.$rnum.')
     )
         (CONNECT_DATA =(SID = XXX))
     )
'
);
?>
Domenico a01b20_NOSPAM_ at iol dot it
07-Nov-2005 05:44
This note is an addendum to note#58378
Seems to be a good workaround set the oracle_home and/instead of the tns_admin.
tnsnames.ora must to be located in
$ORACLE_HOME/network/admin
and in
$TNS_ADMIN/ (if you use it)

---
Best Regards,
Domenico
a01b02_NO_SPAM at iol dot it
02-Nov-2005 07:44
Using tnsnames.ora
Apache 2
php 5.0.5
Oracle 10 IstantClient

PHP half of times return this error:

OCISessionBegin: ORA-24327: need explicit attach before authenticating a user in ...

In Oracle manual I find:

ORA-24327 need explicit attach before authenticating a user

    Cause: A server context must be initialized before creating a session.
    Action: Create and initialize a server handle.

I resolved using Easy Connect Naming Method.

Notice of this problem in bug#29779.

---
Best Regards,
Domenico
Chris
28-Oct-2005 09:19
Our tnsnames.ora uses the SERVICE_NAME=mydb - which for some reason wont work with PHP even though it works fine with tnsping. Using SID=mydb worked and a connection was established.

oci_define_by_name" width="11" height="7"/> <oci_commit
Last updated: Fri, 13 Mar 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites