记php支持oracle连接函数
php.ini文件中的配置,去掉 ;extention = php_oci8.dll,去掉前面的分号
重启apache就可以了,
如果不行,我们再把php目录中的php_oci8.dll拷到windows系统的system32下面去吧。
oracle数据库建立链接
代码如下 | 复制代码 |
1.$conn = oci_connect('username','password',"(DEscriptION=(ADDRESS=(PROTOCOL =TCP)(HOST=192.168.1.100)(PORT = 1521))(CONNECT_DATA =(SID=test)))"); 2.$conn = oci_connect('username','password','192.168.1.100/test'); 3.Oracle 连接方法: set adocon=Server.Createobject("adodb.connection") 4.Oracle OLE DB 连接方法: set adocon=Server.Createobject("adodb.connection") |
有的时候第一种方式不行,使用第二种,里面的几个参数分别是用户名、密码、oracle服务地址,其中test是服务名。
代码如下 | 复制代码 |
$sql = "select * from table_exmaple" $ora_test = oci_parse($conn,$sql); //编译sql语句 oci_execute($ora_test,OCI_DEFAULT); //执行 while($r=oci_fetch_row($ora_test)) //取回结果 { echo $ora_test[0]; echo "<BR>"; } |
看个完整的例子
如果PHP版本>5.0,那么使用下面的函数
oci_connect ( username, password , dbname )
例子:
代码如下 | 复制代码 |
<?php $conn = oci_connect('hr', 'hr', 'orcl'); // 建立连接 if (!$conn) { $e = oci_error(); print htmlentities($e['message']); exit; } $query = 'SELECT * FROM DEPARTMENTS'; // 查询语句 $stid = oci_parse($conn, $query); // 配置SQL语句,准备执行 if (!$stid) { $e = oci_error($conn); print htmlentities($e['message']); exit; } $r = oci_execute($stid, OCI_DEFAULT); // 执行SQL。OCI_DEFAULT表示不要自动commit if(!$r) { $e = oci_error($stid); echo htmlentities($e['message']); exit; } // 打印执行结果 print '<table border="1">'; while($row = oci_fetch_array($stid, OCI_RETURN_NULLS)) { print '<tr>'; foreach($row as $item) { print '<td>'.($item?htmlentities($item):' ').'</td>'; } print '</tr>'; } print '</table>'; oci_close($conn); ?> |