<slide title="Oracle Example">
<example><![CDATA[<?php
$conn = OCINLogin("user","pass","database")
  or die("unable to connect");
$stmt = OCIParse($conn, "SELECT ... ");
OCIExecute($stmt, OCI_DEFAULT)
  or die ("query failed: ".OCIError($stmt));
while (OCIFetchInto($stmt, $row)) {
  echo " $row[id] ... ";
}]]></example>
</slide>
