免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

php數據庫項目代碼,php數據庫項目代碼是什么

求PHP數據庫封裝類操作代碼

?php

創新互聯公司專注于萍鄉網站建設服務及定制,我們擁有豐富的企業做網站經驗。 熱誠為您提供萍鄉營銷型網站建設,萍鄉網站制作、萍鄉網頁設計、萍鄉網站官網定制、小程序制作服務,打造萍鄉網絡公司原創品牌,更為您提供萍鄉網站排名全網營銷落地服務。

class MySQL{

private $host; //服務器地址

private $name; //登錄賬號

private $pwd; //登錄密碼

private $dBase; //數據庫名稱

private $conn; //數據庫鏈接資源

private $result; //結果集

private $msg; //返回結果

private $fields; //返回字段

private $fieldsNum; //返回字段數

private $rowsNum; //返回結果數

private $rowsRst; //返回單條記錄的字段數組

private $filesArray = array(); //返回字段數組

private $rowsArray = array(); //返回結果數組

private $charset='utf8'; //設置操作的字符集

private $query_count=0; //查詢結果次數

static private $_instance; //存儲對象

//初始化類

private function __construct($host='',$name='',$pwd='',$dBase=''){

if($host != '') $this-host = $host;

if($name != '') $this-name = $name;

if($pwd != '') $this-pwd = $pwd;

if($dBase != '') $this-dBase = $dBase;

$this-init_conn();

}

//防止被克隆

private function __clone(){}

public static function getInstance($host='',$name='',$pwd='',$dBase=''){

if(FALSE == (self::$_instance instanceof self)){

self::$_instance = new self($host,$name,$pwd,$dBase);

}

return self::$_instance;

}

public function __set($name,$value){

$this-$name=$value;

}

public function __get($name){

return $this-$name;

}

//鏈接數據庫

function init_conn(){

$this-conn=@mysql_connect($this-host,$this-name,$this-pwd) or die('connect db fail !');

@mysql_select_db($this-dBase,$this-conn) or die('select db fail !');

mysql_query("set names ".$this-charset);

}

//查詢結果

function mysql_query_rst($sql){

if($this-conn == '') $this-init_conn();

$this-result = @mysql_query($sql,$this-conn);

$this-query_count++;

}

//取得字段數

function getFieldsNum($sql){

$this-mysql_query_rst($sql);

$this-fieldsNum = @mysql_num_fields($this-result);

}

//取得查詢結果數

function getRowsNum($sql){

$this-mysql_query_rst($sql);

if(mysql_errno() == 0){

return @mysql_num_rows($this-result);

}else{

return '';

}

}

//取得記錄數組(單條記錄)

function getRowsRst($sql,$type=MYSQL_BOTH){

$this-mysql_query_rst($sql);

if(empty($this-result)) return '';

if(mysql_error() == 0){

$this-rowsRst = mysql_fetch_array($this-result,$type);

return $this-rowsRst;

}else{

return '';

}

}

//取得記錄數組(多條記錄)

function getRowsArray($sql,$type=MYSQL_BOTH){

!empty($this-rowsArray) ? $this-rowsArray=array() : '';

$this-mysql_query_rst($sql);

if(mysql_errno() == 0){

while($row = mysql_fetch_array($this-result,$type)) {

$this-rowsArray[] = $row;

}

return $this-rowsArray;

}else{

return '';

}

}

//更新、刪除、添加記錄數

function uidRst($sql){

if($this-conn == ''){

$this-init_conn();

}

@mysql_query($sql);

$this-rowsNum = @mysql_affected_rows();

if(mysql_errno() == 0){

return $this-rowsNum;

}else{

return '';

}

}

//返回最近插入的一條數據庫的id值

function returnRstId($sql){

if($this-conn == ''){

$this-init_conn();

}

@mysql_query($sql);

if(mysql_errno() == 0){

return mysql_insert_id();

}else{

return '';

}

}

//獲取對應的字段值

function getFields($sql,$fields){

$this-mysql_query_rst($sql);

if(mysql_errno() == 0){

if(mysql_num_rows($this-result) 0){

$tmpfld = @mysql_fetch_row($this-result);

$this-fields = $tmpfld[$fields];

}

return $this-fields;

}else{

return '';

}

}

//錯誤信息

function msg_error(){

if(mysql_errno() != 0) {

$this-msg = mysql_error();

}

return $this-msg;

}

//釋放結果集

function close_rst(){

mysql_free_result($this-result);

$this-msg = '';

$this-fieldsNum = 0;

$this-rowsNum = 0;

$this-filesArray = '';

$this-rowsArray = '';

}

//關閉數據庫

function close_conn(){

$this-close_rst();

mysql_close($this-conn);

$this-conn = '';

}

//取得數據庫版本

function db_version() {

return mysql_get_server_info();

}

}

PHP中鏈接數據庫的代碼

數據庫有很多種類:mysql,oracle,mssql,db2等等。PHP操作數據庫的時候,要保證該類型數據庫的擴展已開啟。這里連接的數據庫以mysql為例:?php

//數據庫服務器地址

$host="localhost";

//連接數據庫用戶名

$uname="root";

//連接數據庫密碼

$upass="";

//連接數據庫

$conn=mysql_connect($host, $uname,$upass);

//判斷連接

if(!$conn){

die("連接數據庫失敗!").mysql_errno();

}

//連接成功,其他操作省略

?

php數據庫內容修改代碼

修改如下:不用使用session傳遞

1.php 文件中: 修改后的代碼,將$row["id"]作為id的參數值傳遞到2.php

else{

echo 'td'.'a href="2.php?id='.$row["id"].'"'.$row["id"].可以修改.'/a/td';

}

2.php修改如下:

$strSql="SELECT * from test where id=".$_GET['id'];

幾種常用PHP連接數據庫的代碼示例

sybase_connect連上數據庫。

語法: int sybase_connect(string [servername], string [username], string [password]);

返回值: 整數函數種類: 數據庫功能 本函數用來打開與 Sybase 數據庫的連接。

參數 servername 為欲連上的數據庫服務器名稱。

參數 username 及 password 可省略,分別為連接使用的帳號及密碼。

使用本函數需注意早點關閉數據庫,以減少系統的負擔。

連接成功則返回數據庫的連接代號,失敗返回 false 值。

當前標題:php數據庫項目代碼,php數據庫項目代碼是什么
路徑分享:http://m.newbst.com/article12/phhsdc.html

成都網站建設公司_創新互聯,為您提供App設計網站建設網站營銷全網營銷推廣虛擬主機電子商務

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

搜索引擎優化