";
// Execute a query
function do_query($conn)
{
$stid = oci_parse($conn,
"select to_char(col1, 'DD-MON-YY HH:MI:SS') from mytable");
oci_execute($stid, OCI_DEFAULT);
oci_fetch_all($stid, $res);
foreach ($res as $v) {
var_dump($v);
}
}
// Create a database connection
function do_connect()
{
$conn = oci_new_connect("hr", "hrpwd", "//localhost/orcl");
return($conn);
}
$d = date('j:M:y H:i:s');
// Create a connection
$c1 = do_connect();
// Insert the date into mytable
$s = oci_parse($c1,
"insert into mytable values (to_date('"
. $d . "', 'DD:MON:YY HH24:MI:SS'))");
$r = oci_execute($s); // no OCI_DEFAULT means automatically commit
// Query the current session/connection
echo "Query using connection 1 \n";
do_query($c1);
// Create a new connection and query the table contents
$c2 = do_connect();
echo " Query using connection 2 \n";
do_query($c2);
echo "";
?>
|