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

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

php三種數(shù)據(jù)庫(kù)操作 php7數(shù)據(jù)庫(kù)操作

thinkphp數(shù)據(jù)庫(kù)操作

要先create再add,create可以根據(jù)表單自動(dòng)創(chuàng)建數(shù)據(jù)庫(kù)數(shù)據(jù),也可以對(duì)傳入的參數(shù)進(jìn)行驗(yàn)證和過(guò)濾(在model里用_validate指定規(guī)則)。add直接插入create之后的數(shù)據(jù),或者把傳入的數(shù)組直接插入數(shù)據(jù)庫(kù)

創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司一直秉承“誠(chéng)信做人,踏實(shí)做事”的原則,不欺瞞客戶,是我們最起碼的底線! 以服務(wù)為基礎(chǔ),以質(zhì)量求生存,以技術(shù)求發(fā)展,成交一個(gè)客戶多一個(gè)朋友!專(zhuān)注中小微企業(yè)官網(wǎng)定制,成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站,塑造企業(yè)網(wǎng)絡(luò)形象打造互聯(lián)網(wǎng)企業(yè)效應(yīng)。

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怎么操作數(shù)據(jù)庫(kù)

//鏈接數(shù)據(jù)庫(kù)

$db=mysql_connect("localhost", "root","123456");

$sqlname="database";

mysql_select_db($sqlname,$db);

session_start();

mysql_query("SET NAMES 'utf8'",$db);

?

?

//創(chuàng)建結(jié)果集

$sql = "SELECT * FROM kecheng";

$result = mysql_query($sql);

$rs= mysql_fetch_array($result);

?

?

//修改數(shù)據(jù)

$sql = "UPDATE news SET title='1111' where news_id=1";

$result = mysql_query($sql);

?

?

//刪除數(shù)據(jù)

$sql = "DELETE from news where news_id=1";

$result = mysql_query($sql);

?

?

//添加數(shù)據(jù)

$sql = "INSERT INTO news (title,fenshu) VALUES ('a',1)"

$result = mysql_query($sql);

?

php連接access數(shù)據(jù)庫(kù)代碼

php教程

連接access數(shù)據(jù)庫(kù)教程代碼

下面提供三種php連接access數(shù)據(jù)庫(kù)方法,一種是利用php的pdo,一種是odbc,com接口來(lái)與access數(shù)據(jù)庫(kù)連接哦。

*/

//利用pdo與access數(shù)據(jù)庫(kù)連接

$path

="f:font";

$conn

=

new

pdo("sqlite:$path");

if(

$conn

)

{

echo

('connection

pdo

success');

}

else

{

echo

('cnnection

pdo

fail

,plase

check

database

server!');

}

//利用

odbc_connect連接數(shù)據(jù)庫(kù)

$conn

=

odbc_connect("dbdsn","admin","123");

//連接數(shù)據(jù)源

$doquery=odbc_exec($conn,"select

*

from

表名

where

條件");//執(zhí)行查詢(xún)

//利用com接口連接access數(shù)據(jù)庫(kù)

$conn=new

com("adodb.connection");

$dsn="driver={microsoft

access

driver

(*.mdb)};dbq=".realpath("path/db1.mdb");

$conn-open($dsn);


網(wǎng)站題目:php三種數(shù)據(jù)庫(kù)操作 php7數(shù)據(jù)庫(kù)操作
文章轉(zhuǎn)載:http://weahome.cn/article/doshpsg.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部