教你在PHP中使用Oracle数据库四)
程序员文章站
2022-06-05 21:57:15
...
教你在PHP中使用Oracle数据库(四)
同上,只不过用OCI来写
相关php代码:
if ($submit == "click"){
// The submit button was clicked!
// Get the input for fullname and email then store it in the database.
PutEnv("Oracle_SID=ORASID");
$connection = OCILogon ("username","passWord");
if ($connection == false){
echo OCIError($connection)."
";
exit;
}
$query = "insert into email_info values ('$fullname', '$email')";
$cursor = OCiparse ($connection, $query);
if ($cursor == false){
echo OCIError($cursor)."
";
exit;
}
$result = OCIExecute ($cursor);
if ($result == false){
echo OCIError($cursor)."
";
exit;
}
OCICommit ($connection);
OCILogoff ($connection);
}
else{
echo '
<FORM action=insert.php method=post>
请输入姓名
<INPUT name=fullname></INPUT>
请输入 Email 地址
<INPUT name=email></INPUT>
<INPUT name=submit type=submit value=click></INPUT>
</FORM>
';
}
?>
对了,这段脚本必须存为insert.php,因为在调用的页面中指定insert.php为表单处理程序
利用OCI向数据表 'email_info' 输入数据
同上,只不过用OCI来写
相关php代码:
if ($submit == "click"){
// The submit button was clicked!
// Get the input for fullname and email then store it in the database.
PutEnv("Oracle_SID=ORASID");
$connection = OCILogon ("username","passWord");
if ($connection == false){
echo OCIError($connection)."
";
exit;
}
$query = "insert into email_info values ('$fullname', '$email')";
$cursor = OCiparse ($connection, $query);
if ($cursor == false){
echo OCIError($cursor)."
";
exit;
}
$result = OCIExecute ($cursor);
if ($result == false){
echo OCIError($cursor)."
";
exit;
}
OCICommit ($connection);
OCILogoff ($connection);
}
else{
echo '
<FORM action=insert.php method=post>
请输入姓名
<INPUT name=fullname></INPUT>
请输入 Email 地址
<INPUT name=email></INPUT>
<INPUT name=submit type=submit value=click></INPUT>
</FORM>
';
}
?>
对了,这段脚本必须存为insert.php,因为在调用的页面中指定insert.php为表单处理程序
以上就介绍了教你在PHP中使用Oracle数据库四),包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
教你在PHP中使用Oracle数据库(五)
-
教你在PHP中使用Oracle数据库四)
-
教你在PHP中使用Oracle数据库(三)
-
在oracle中限制返回结果集的大小,类似于mysql的limit(转译)-数据库相关-PHP教程-
-
教你在PHP中使用Oracle数据库(二)
-
教你在PHP中使用Oracle数据库(一)
-
在oracle中限制返回结果集的大小,类似于mysql的limit(转译)-数据库相关-PHP教程-_PHP教程
-
在oracle中限制返回结果集的大小,类似于mysql的limit(转译)-数据库相关-PHP教程-
-
关于在Windows上安装和使用Oracle数据库过程中遇到的一些问题
-
快速教你在php中如何操作使用protobuf