$c1 = ocilogon("XXXX","YYYY","CS4604");
$stmt = ociparse($c1,"select * from test");
$result = ociexecute($stmt,OCI_DEFAULT);
while(ocifetch($stmt))
echo ociresult($stmt,1);
----------------------------------------------
";
$stmt = OCIParse($conn1, "select * from test");
$res = OCIExecute($stmt);
while (OCIFetch($stmt))
{
echo OCIResult($stmt, 1);
echo "
";
}
echo "
";
}
?>