Posts Connect PHP with Oracle database
Post
Cancel

Connect PHP with Oracle database

TNS at C:\oracle\product\x\db_1\NETWORK\ADMIN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//http://stackoverflow.com/a/5947976
<?php
    $db = "(DESCRIPTION=(ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.34)(PORT = 1521)))(CONNECT_DATA=(SID=orcl)))" ;

    if($c = OCILogon("system", "your database password", $db))
    {
        echo Successfully connected to Oracle.\n;
        OCILogoff($c);
    }
    else
    {
        $err = OCIError();
        echo Connection failed. . $err[text];
    }
?>

origin - http://www.pipiscrew.com/?p=6618 connect-php-with-oracle-database

This post is licensed under CC BY 4.0 by the author.
Contents

Trending Tags