php5.4連線ORACLE資料

yarking207發表於2017-09-22
<?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);

?>

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/220205/viewspace-2145330/,如需轉載,請註明出處,否則將追究法律責任。

相關文章