oracle(甲骨文)是世界上最为流行的关系数据库。它是大公司推崇的工业化的强有力的引擎。我们先看看其相关的函数:
(1)integer ora_logon(string 厨房对联ur , string password)
开始对一个oracle数据库服务器的连接。
(2)integer ora_open(integer connection)
打开给出的连接的游标。
(3)integer ora_do(integer connection, string query)
在给出的连接上执行查询。php生成一个指示器,解析查询,并执行之。
(4)integer ora_par(integer cursor, string英语十级 query)
解析一个查询并准备好执行。
(5)boolean ora_exec(integer cursor)
执行一个先前由ora_par函数解析班干部职责一览表过的查询。
(6)boolean ora_fetch(integer cursor)
此函数会使得一个执行过的查询中的行被取到指示器中。这使得您可以调用ora_getcolumn函数。
(7)string ora_getcolumn(integer cursor, integer column)
返回当前的值。列由零开始的数字索引。
(8)boolean ora_logoff(integer connection)
断开对数据库服务器的链接。
以下是向oracle数据库插入数据的示例程序:
<html>
<head><title>向oracle数据库中插入数据</title></head>
<body>
<form action=”<?echo $php_testdaf报名lf;?>” method=”post”>
<table border=”1″ cellspacing=”0″ cellpadding=”0″>
<tr>
<th>id</th>
<th>name</th>
<th>description</th>
</tr>
<tr>
<td><input type=”text” name=”name” maxlength=”50″ size=”10″></td>
<td><input type=”text” name=”email” maxlength=”255″ size=”30″></td>
<td><input type=”text” name=”description” maxlength=”255″ size=”50″></td>
</tr>
<tr align=”center”>
<td colspan=”3″><input type=”submit” value=”提交”><input type=”ret” value=”重写”></td>
</tr>
</table>
</form>
<?
//先设置两个环境变量oracle_home,oracle_sid
putenv(“oracle_home=/oracle/app/oracle/product/8.0.4”);
putenv(“oracle_sid=ora8”);
//设置网页显示中文
putenv(“nls_lang=simplified_chine.zhs16cgb231280”);
if($connection=ora_logon(“scott”,”tiger”)) {
//库表test有id,name,description三项
$sql = ‘inrt into test(id,name,description) values ‘;
$sql .= ‘(” . $id . ”,” . $name . ”,”. $description . ”)’;
if($cursor=ora_do($connect,$sql)) {
print(“inrt finished!”);
}
$quer新型大国关系y = ‘lect * from test’;
if($cursor=ora_do($connect,$query)) {
ora_fetch($cursor);
$content0=ora_getcolumn($cursor,0);
$content1=ora_getcolumn($cursor,1);
$content2=ora_getcolumn($cursor,2);
print(“$content0”);
print(“$content1”);
print(“$content2”);
ora_clo($cursor);
}
ora_logoff($connection);
}
?>
</body>
</html>
本文发布于:2023-04-06 05:43:42,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/b5ee2dd6654764a75715c69d2289c78e.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP调用三种数据库的方法(3).doc
本文 PDF 下载地址:PHP调用三种数据库的方法(3).pdf
留言与评论(共有 0 条评论) |