欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

如何在PHP中使用Oracle數(shù)據(jù)庫(kù)(6)

 更新時(shí)間:2006年10月09日 00:00:00   作者:  
利用OCI列出全部數(shù)據(jù)表'email_info'中的數(shù)據(jù)


同上,只不過(guò)用OCI來(lái)寫  

相關(guān)PHP代碼:


PutEnv("ORACLE_SID=ORASID");

$connection = OCILogon ("username","password");
if ($connection == false){
  echo OCIError($connection)."
";
  exit;
}

$query = "select * from email_info";
$cursor = OCIParse ($connection, $query);
if ($cursor == false){
  echo OCIError($cursor)."
";
  exit;  
}

$result = OCIExecute ($cursor);
if ($result == false){
  echo OCIError($cursor)."
";
  exit;
}

echo " ";
echo "  Full Name Email Address  
";

while (OCIFetchInto ($cursor, $values)){
  $name = $values[0];
  $email = $values[1];

  echo "  $name $email  
";
}

echo " ";

OCILogoff ($connection);

?>  


程序運(yùn)行的瀏覽效果如下所示:

    
姓名 Email 地址  
春花 springflower@163.com  
秋月 autumnmoon@163.com  
... ...  

相關(guān)文章

最新評(píng)論