調(diào)php用數(shù)據(jù)庫(kù)的方法 php 數(shù)據(jù)庫(kù)操作

php 調(diào)用數(shù)據(jù)庫(kù)怎么調(diào)用

?php

創(chuàng)新互聯(lián)公司主營(yíng)南安網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,手機(jī)APP定制開(kāi)發(fā),南安h5小程序設(shè)計(jì)搭建,南安網(wǎng)站營(yíng)銷(xiāo)推廣歡迎南安等地區(qū)企業(yè)咨詢(xún)

mysql_connect("localhost","root","123456") //填寫(xiě)mysql用戶(hù)名和密碼

or die("Could not connect to MySQL server!");

mysql_select_db("phpcms") //數(shù)據(jù)庫(kù)名

or die("Could not select database!");

mysql_query('set names "gbk"'); //數(shù)據(jù)庫(kù)內(nèi)數(shù)據(jù)的編碼

?

PHP調(diào)用三種數(shù)據(jù)庫(kù)的方法(3)

Oracle(甲骨文)是世界上最為流行的關(guān)系數(shù)據(jù)庫(kù)。它是大公司推崇的工業(yè)化的強(qiáng)有力的引擎。我們先看看其相關(guān)的函數(shù):

(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í)行查詢(xún)。PHP生成一個(gè)指示器,解析查詢(xún),并執(zhí)行之。

(4)integer

ora_parse(integer

cursor,

string

query)

解析一個(gè)查詢(xún)并準(zhǔn)備好執(zhí)行。

(5)boolean

ora_exec(integer

cursor)

執(zhí)行一個(gè)先前由ora_parse函數(shù)解析過(guò)的查詢(xún)。

(6)boolean

ora_fetch(integer

cursor)

此函數(shù)會(huì)使得一個(gè)執(zhí)行過(guò)的查詢(xún)中的行被取到指示器中。這使得您可以調(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

php中選擇打開(kāi)數(shù)據(jù)庫(kù)的方法是

在mysql數(shù)據(jù)庫(kù)中,創(chuàng)建一個(gè)test數(shù)據(jù)庫(kù),用于測(cè)試。

請(qǐng)點(diǎn)擊輸入圖片描述

新建一個(gè)php文件,命名為test.php,用于講解php如何選擇要操作的數(shù)據(jù)庫(kù)。

請(qǐng)點(diǎn)擊輸入圖片描述

在test.php文件中,使用header()方法將頁(yè)面的編碼格式設(shè)置為utf-8,避免輸出中文亂碼。

請(qǐng)點(diǎn)擊輸入圖片描述

在test.php文件中,使用mysql_connect()函數(shù),通過(guò)賬號(hào)和密碼創(chuàng)建一個(gè)數(shù)據(jù)庫(kù)的連接。

請(qǐng)點(diǎn)擊輸入圖片描述

在test.php文件中,再使用mysql_select_db()函數(shù)選擇要操作的數(shù)據(jù)庫(kù)test,選擇數(shù)據(jù)庫(kù)成功,則返回true,否則,返回false。最后,通過(guò)if語(yǔ)句判斷結(jié)果。

請(qǐng)點(diǎn)擊輸入圖片描述

在瀏覽器打開(kāi)test.php文件,查看結(jié)果。

請(qǐng)點(diǎn)擊輸入圖片描述

END

總結(jié):

1、創(chuàng)建一個(gè)test數(shù)據(jù)庫(kù)。

2、使用mysql_connect()函數(shù)創(chuàng)建一個(gè)數(shù)據(jù)庫(kù)的連接。

3、再使用mysql_select_db()函數(shù)選擇要操作的數(shù)據(jù)庫(kù)test,并通過(guò)if語(yǔ)句判斷結(jié)果。

網(wǎng)站名稱(chēng):調(diào)php用數(shù)據(jù)庫(kù)的方法 php 數(shù)據(jù)庫(kù)操作
URL分享:http://muchs.cn/article30/dodhhpo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供面包屑導(dǎo)航、網(wǎng)站收錄、服務(wù)器托管ChatGPT、企業(yè)建站、云服務(wù)器

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

營(yíng)銷(xiāo)型網(wǎng)站建設(shè)