php5.4連線ORACLE資料
<?php
$conn = oci_connect("username", "password", "dbname"); //連線oracle資料庫
if (!$conn) {
$e = oci_error();
print htmlentities($e['message']);
exit;
}
$query = 'SELECT * FROM BS order by sj desc'; // 查詢語句
$stid = oci_parse($conn, $query);
$r = oci_execute($stid);
// Fetch the results in an associative array
print '<table border="1">';
while ($row = oci_fetch_array($stid, OCI_RETURN_NULLS+OCI_ASSOC)) {
print '<tr>';
foreach ($row as $item) {
print '<td>'.($item?htmlentities($item):' ').'</td>';
}
print '</tr>';
}
print '</table>';
// Close the Oracle connection
oci_close($conn);
?>
$conn = oci_connect("username", "password", "dbname"); //連線oracle資料庫
if (!$conn) {
$e = oci_error();
print htmlentities($e['message']);
exit;
}
$query = 'SELECT * FROM BS order by sj desc'; // 查詢語句
$stid = oci_parse($conn, $query);
$r = oci_execute($stid);
// Fetch the results in an associative array
print '<table border="1">';
while ($row = oci_fetch_array($stid, OCI_RETURN_NULLS+OCI_ASSOC)) {
print '<tr>';
foreach ($row as $item) {
print '<td>'.($item?htmlentities($item):' ').'</td>';
}
print '</tr>';
}
print '</table>';
// Close the Oracle connection
oci_close($conn);
?>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/220205/viewspace-2145330/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python 連線 Oracle資料庫PythonOracle資料庫
- [Navicate]Navicate連線Oracle資料庫Oracle資料庫
- 使用instantclient連線oracle資料庫clientOracle資料庫
- Oracle dos連線資料庫基本操作Oracle資料庫
- C#連線和操作Oracle資料C#Oracle
- ORACLE 配置連線遠端資料庫Oracle資料庫
- Oracle RMAN 連線資料庫認證方法Oracle資料庫
- [20181224]使用odbc連線oracle資料庫.txtOracle資料庫
- jdbc連線oracle rac資料庫的寫法JDBCOracle資料庫
- PowerDesigner連線Oracle逆向生成資料模型(轉載)Oracle模型
- PL/SQL Developer連線遠端Oracle資料庫SQLDeveloperOracle資料庫
- PowerDesigner實現Oracle資料庫連線生成模型Oracle資料庫模型
- python使用cx_Oracle連線oracle資料庫獲取常用資訊PythonOracle資料庫
- 【JDBC】java連線池模擬測試連線Oracle資料庫指令碼參考JDBCJavaOracle資料庫指令碼
- cx_Oracle 連線 OracleOracle
- oracle下載安裝及PLSQL連線資料庫教程OracleSQL資料庫
- 備忘錄:關於.net程式連線Oracle資料庫Oracle資料庫
- Python連線三大資料庫MS Sql Server、Oracle、MySQLPython大資料資料庫ServerOracleMySql
- kettl連線oracle12c 可插拔資料庫pdbOracle資料庫
- 本地不安裝oracle,用PL/SQL Developer連線資料庫OracleSQLDeveloper資料庫
- thinkphp連線OraclePHPOracle
- PHP 連線 OraclePHPOracle
- PHP 連線oraclePHPOracle
- Servlet連線OracleServletOracle
- 用Navicat連線資料庫-資料庫連線(MySQL演示)資料庫MySql
- 使用 Spring Boot 2.4配置Oracle的UCP資料庫連線池Spring BootOracle資料庫
- 連線oracle資料庫時,報錯:{dataSource-1} init errorOracle資料庫Error
- Kettle8.2連線Oracle資料庫失敗解決方法Oracle資料庫
- 連線資料庫資料庫
- 基於C#語言Oracle.ManagedDataAccess操作Oracle資料庫連線語句C#Oracle資料庫
- oracle 連線查詢Oracle
- DBA ORACLE連線操作Oracle
- 3.2.2 python連線oraclePythonOracle
- python 連線 mongo 資料庫連線超時PythonGo資料庫
- 資料庫連線池-Druid資料庫連線池原始碼解析資料庫UI原始碼
- Oracle透過ODBC連線SQL Server資料庫後ORA-12514OracleSQLServer資料庫
- 深圳軟體測試學習:【資料庫】-【oracle】-連線查詢資料庫Oracle
- oracle資料庫透過sqlplus連線的幾種方式介紹Oracle資料庫SQL
- Oracle SQL Developer 連線資料庫總是顯示io錯誤OracleSQLDeveloper資料庫