Oracle(甲骨文)是世界上最為流行的關(guān)系數(shù)據(jù)庫(kù)。它是大公司推崇的工業(yè)化的強(qiáng)有力的引擎。我們先看看其相關(guān)的函數(shù):
創(chuàng)新互聯(lián)是一家專(zhuān)注于成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),江達(dá)網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專(zhuān)注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計(jì)領(lǐng)域的專(zhuān)業(yè)建站公司;建站業(yè)務(wù)涵蓋:江達(dá)等地區(qū)。江達(dá)做網(wǎng)站價(jià)格咨詢:028-86922220
(1)integer
ora_logon(string
user
,
string
password)
開(kāi)始對(duì)一個(gè)Oracle數(shù)據(jù)庫(kù)服務(wù)器的連接。
(2)integer
ora_open(integer
connection)
打開(kāi)給出的連接的游標(biāo)。
(3)integer
ora_do(integer
connection,
string
query)
在給出的連接上執(zhí)行查詢。PHP生成一個(gè)指示器,解析查詢,并執(zhí)行之。
(4)integer
ora_parse(integer
cursor,
string
query)
解析一個(gè)查詢并準(zhǔn)備好執(zhí)行。
(5)boolean
ora_exec(integer
cursor)
執(zhí)行一個(gè)先前由ora_parse函數(shù)解析過(guò)的查詢。
(6)boolean
ora_fetch(integer
cursor)
此函數(shù)會(huì)使得一個(gè)執(zhí)行過(guò)的查詢中的行被取到指示器中。這使得您可以調(diào)用ora_getcolumn函數(shù)。
(7)string
ora_getcolumn(integer
cursor,
integer
column)
返回當(dāng)前的值。列由零開(kāi)始的數(shù)字索引。
(8)boolean
ora_logoff(integer
connection)
斷開(kāi)對(duì)數(shù)據(jù)庫(kù)服務(wù)器的鏈接。
以下是向ORACLE數(shù)據(jù)庫(kù)插入數(shù)據(jù)的示例程序:
html
headtitle向ORACLE數(shù)據(jù)庫(kù)中插入數(shù)據(jù)/title/head
body
form
action="?echo
$PHP_SELF;?"
method="post"
table
border="1"
cellspacing="0"
cellpadding="0"
tr
thID/th
thname/th
thDescription/th
/tr
tr
tdinput
type="text"
name="name"
maxlength="50"
size="10"/td
tdinput
type="text"
name="email"
maxlength="255"
size="30"/td
tdinput
type="text"
name="Description"
maxlength="255"
size="50"/td
/tr
tr
align="center"
td
colspan="3"input
type="submit"
value="提交" input
type="reset"
value="重寫(xiě)"/td
/tr
/table
/form
?
//先設(shè)置兩個(gè)環(huán)境變量ORACLE_HOME,ORACLE_SID
putenv("ORACLE_HOME=/oracle/app/oracle/product/8.0.4");
putenv("ORACLE_SID=ora8");
//設(shè)置網(wǎng)頁(yè)顯示中文
putenv("NLS_LANG=Simplified_Chinese.zhs16cgb231280");
if($connection=ora_logon("scott","tiger"))
{
//庫(kù)表test有ID,name,Description三項(xiàng)
$sql
=
'insert
into
test(ID,name,Description)
values
';
$sql
.=
'(''
.
$ID
.
'',''
.
$name
.
'',''.
$Description
.
'')';
if($cursor=ora_do($connect,$sql))
{
print("insert
finished!");
}
$query
=
'select
*
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_close($cursor);
}
ora_logoff($connection);
}
?
/body
/html
在html中調(diào)用php內(nèi)容,可以用script src="friendlinks.php"/script然后在friendlinks.php中調(diào)取數(shù)據(jù)庫(kù)數(shù)據(jù)。并輸出適當(dāng)?shù)膆tml,或者輸出xml、json都可以,只是圖簡(jiǎn)單的話,只要輸出html就行了。
php調(diào)用mysql步驟:1、連接MySQL數(shù)據(jù)庫(kù);2、選擇MySQL數(shù)據(jù)庫(kù);3、執(zhí)行SQL語(yǔ)句;4、關(guān)閉結(jié)果集;5、關(guān)閉MySQL服務(wù)器。
本文操作環(huán)境:windows7系統(tǒng)、PHP7.1版,DELL G3電腦
PHP訪問(wèn)MYSQL數(shù)據(jù)庫(kù)的五個(gè)步驟詳解(圖)
數(shù)據(jù)庫(kù)在我們PHP日常開(kāi)發(fā)中是必須需要的,那么MYSQL數(shù)據(jù)庫(kù) 是一款很多程序員都喜愛(ài)的數(shù)據(jù)庫(kù),由于呢 MYSQL 是一個(gè)開(kāi)源的,帶一點(diǎn)半商業(yè)的,市場(chǎng)的占有率比較高,所以一直以來(lái)都被認(rèn)為是 PHP 的最佳搭檔,同時(shí) PHP 也具有很強(qiáng)大的數(shù)據(jù)庫(kù)支持能力,本篇主要講解 PHP訪問(wèn)MySQL數(shù)據(jù)庫(kù)的基本步驟。
PHP訪問(wèn)MySQL數(shù)據(jù)庫(kù)的基本步驟如圖所示:
.連接MySQL數(shù)據(jù)庫(kù)
使用 mysql_connect()函數(shù)建立與MySQL服務(wù)器的連接。有關(guān) mysql_connect()函數(shù)的使用,我們后面會(huì)有詳細(xì)的介紹。
2.選擇MySQL數(shù)據(jù)庫(kù)
使用 mysql_select_db()函數(shù)選擇MySQL數(shù)據(jù)庫(kù)服務(wù)器的數(shù)據(jù)庫(kù)。并與數(shù)據(jù)庫(kù)建立連接,有關(guān)mysql_select_db()函數(shù)的使用,后面我們會(huì)有具體詳解。
3.執(zhí)行 SQL 語(yǔ)句
在選擇數(shù)據(jù)庫(kù)中使用 mysql_query()函數(shù)執(zhí)行 SQL語(yǔ)句,對(duì)數(shù)據(jù)的操作方式主要包括 5種方式,下面我們分別進(jìn)行介紹。查詢數(shù)據(jù):使用select 語(yǔ)句實(shí)現(xiàn)數(shù)據(jù)的查詢功能。
顯示數(shù)據(jù):使用select 語(yǔ)句顯示數(shù)據(jù)的查詢結(jié)果。
插入數(shù)據(jù):使用insert into 語(yǔ)句向數(shù)據(jù)庫(kù)中插入數(shù)據(jù)。
更新數(shù)據(jù):使用update 語(yǔ)句更新數(shù)據(jù)庫(kù)中的記錄。
刪除數(shù)據(jù):使用 delete語(yǔ)句刪除數(shù)據(jù)庫(kù)中的記錄!
mysql_query()函數(shù)的具體使用后面有具體介紹~
4.關(guān)閉結(jié)果集
數(shù)據(jù)庫(kù)操作完成后,需要關(guān)閉結(jié)果集,以釋放系統(tǒng)資源,語(yǔ)法格式如下:mysql_free_result($result);
技巧:
如果在多個(gè)網(wǎng)頁(yè)中都要頻繁進(jìn)行數(shù)據(jù)庫(kù)訪問(wèn),那么可以建立與數(shù)據(jù)庫(kù)服務(wù)器的持續(xù)連接來(lái)提高效率,因?yàn)槊看闻c數(shù)據(jù)庫(kù)服務(wù)器的連接需要較長(zhǎng)的時(shí)間和交大的資源開(kāi)銷(xiāo),持續(xù)的連接相對(duì)來(lái)說(shuō)會(huì)更有效率,建立持續(xù)連接的方法就是在數(shù)據(jù)庫(kù)間接時(shí),調(diào)用函數(shù) mysql_pconnect()代替mysql_connect函數(shù)。建立的持續(xù)連接在本程序結(jié)束時(shí),不需要調(diào)用 mysql_colse()來(lái)關(guān)閉與數(shù)據(jù)庫(kù)服務(wù)器的連接。下次程序在此執(zhí)行 mysql_pconnect()函數(shù)時(shí),系統(tǒng)自動(dòng)直接返回已經(jīng)建立的持續(xù)連接ID號(hào),而不再去真的連接數(shù)據(jù)庫(kù)。
5.關(guān)閉MySQL服務(wù)器
沒(méi)使用一次 mysql_connect()或者mysql_query()函數(shù),都會(huì)消耗系統(tǒng)資源,再少量用戶放完 web 網(wǎng)站時(shí)問(wèn)題還不大,但如果用戶連接超過(guò)一定數(shù)量時(shí),就會(huì)造成系統(tǒng)性能下降,甚至是死機(jī),為了避免這種現(xiàn)象的發(fā)生,在完成數(shù)據(jù)庫(kù)的操作后,應(yīng)該使用 mysql_close()函數(shù)關(guān)閉與MYSQL服務(wù)器的連接,以節(jié)省系統(tǒng)資源。
語(yǔ)法格式如下:mysql_close($link);
說(shuō)明:
PHP 中與數(shù)據(jù)庫(kù)的連接是非持久連接,系統(tǒng)會(huì)自動(dòng)回收,一般不用設(shè)置關(guān)閉,但是如果一次性范湖的結(jié)果集比較大,或者網(wǎng)站訪問(wèn)量比價(jià)多,那么最好使用 mysql_close()函數(shù)手動(dòng)進(jìn)行釋放。
PHP訪問(wèn)MySQL數(shù)據(jù)庫(kù)的步驟就結(jié)束了,是不是很簡(jiǎn)單。
推薦學(xué)習(xí):《PHP視頻教程》
以上就是php調(diào)用mysql步驟的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
代碼如下:?View
Code
PHP
include("conn.php");//調(diào)用數(shù)據(jù)庫(kù)連接文件
echo
"table
width=572
height=56
border=0
cellspacing=1
";
//創(chuàng)建html表格
echo
"tr
bgcolor=#9999FF";
echo
"th
width=33
scope=colid/th";
echo
"th
width=100
scope=coluser_name/th
";
echo
"th
width=100
scope=coluser_pass/th
";
echo
"th
width=100
scope=colstaus/th";
echo
"th
width=100
scope=colinsert_time/th";
echo
"/tr";
$SQL
=
"select
*
from
user_info";
$query
=
mysql_query($SQL);
//SQL查詢語(yǔ)句
while
($row
=
mysql_fetch_array($query)){
//使用while循環(huán)mysql_fetch_array()并將數(shù)據(jù)返回?cái)?shù)組
echo
"tr
onmouseout=this.style.backgroundColor=''
onMouseOver=this.style.backgroundColor='#99CC33'
bgcolor=#CCCCCC";
echo
"td$row[0]/td";
//輸出數(shù)組中數(shù)據(jù)
echo
"td$row[1]/td";
echo
"td$row[2]/td";
echo
"td$row[3]/td";
echo
"td$row[4]/td";
echo
"/tr";
}
echo
"/table";輸出記錄截圖
這個(gè)先連接數(shù)據(jù)庫(kù),然后調(diào)用,代碼如下:
$dbhost?=?'localhost:3306';??//?mysql服務(wù)器主機(jī)地址
$dbuser?=?'root';????????????//?mysql用戶名
$dbpass?=?'123456';??????????//?mysql用戶名密碼
$conn?=?mysqli_connect($dbhost,?$dbuser,?$dbpass);
if(!?$conn?){
die('Could?not?connect:?'?.?mysqli_error());
}
echo?'數(shù)據(jù)庫(kù)連接成功!';mysqli_close($conn);
$sql=mysql_query("select?*??from?wx_agent_orders?where?id=1");
$row=mysql_query($conn,$sql);
while($r=mysql_fetch_array($row)){
echo?$r['sendcontent']
}
這是最基礎(chǔ)的php獲取mysql方法了,希望采納