真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php的打開(kāi)數(shù)據(jù)庫(kù),php網(wǎng)頁(yè)怎么打開(kāi)數(shù)據(jù)庫(kù)

如何打開(kāi)php mysql數(shù)據(jù)庫(kù)

在wamp目錄下的WWW下創(chuàng)建一個(gè)后綴名為PHP的記事本文件

創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的龍里網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

輸入以下代碼

?php

$con=mysql_connect("localhost:3306","用戶名(默認(rèn)root)","密碼");

if(mysql_error())

{

echo"數(shù)據(jù)庫(kù)連接失敗";

die();//終止運(yùn)行

}

mysql_select_db("數(shù)據(jù)庫(kù)名",$con);

if(mysql_errno())

{

echo"數(shù)據(jù)庫(kù)連接失敗";

die();

}

echo"數(shù)據(jù)庫(kù)連接成功";

?

要寫(xiě)sql語(yǔ)句的話

例如:

?php

$con=mysql_connect("localhost:3306","root","root")

or die("數(shù)據(jù)庫(kù)連接失敗br");

mysql_select_db("mysql_test",$con) or die("數(shù)據(jù)庫(kù)連接失敗!br");

mysql_query("set names 'gbk'");//設(shè)置中文字符

$sql = "insert into customers(cust_id,cust_name,cust_sex,cust_address,cust_contact)";

$sql=$sql."values(null,'李中華','0','深圳市','南山區(qū)')";

if(mysql_query($sql,$con)){

echo"數(shù)據(jù)庫(kù)連接成功br";

}

else{

echo"數(shù)據(jù)庫(kù)連接失敗br";

}

?

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é)果。

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í)行查詢。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

phpstorm如何調(diào)用數(shù)據(jù)庫(kù)

打開(kāi)phpstorm,打開(kāi)Database窗口,如下圖:

配置mysql連接,如下圖:

填寫(xiě)mysql地址,用戶名,密碼,如果沒(méi)有安裝驅(qū)動(dòng),要先安裝驅(qū)動(dòng)

測(cè)試數(shù)據(jù)庫(kù)能否連接成功:

保存配置,保存時(shí),會(huì)提示設(shè)置密碼:

讀取數(shù)據(jù)庫(kù)表,及根據(jù)條件查詢修改:


文章標(biāo)題:php的打開(kāi)數(shù)據(jù)庫(kù),php網(wǎng)頁(yè)怎么打開(kāi)數(shù)據(jù)庫(kù)
網(wǎng)站網(wǎng)址:http://weahome.cn/article/hsipdj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部