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

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

怎樣編寫php查詢數(shù)據(jù)庫 php數(shù)據(jù)庫查詢結(jié)果處理

PHP中寫一個數(shù)據(jù)庫查詢的類的方法代碼要如何寫

?php

成都創(chuàng)新互聯(lián)公司為客戶提供專業(yè)的成都做網(wǎng)站、網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設、程序、域名、空間一條龍服務,提供基于WEB的系統(tǒng)開發(fā). 服務項目涵蓋了網(wǎng)頁設計、網(wǎng)站程序開發(fā)、WEB系統(tǒng)開發(fā)、微信二次開發(fā)、移動網(wǎng)站建設等網(wǎng)站方面業(yè)務。

if(!defined("INCLUDE_MYSQL_OK")) {

define("INCLUDE_MYSQL_OK","");

class MySQL_class {

var $debug = true;

var $db,

$id,

$result, /* 查詢結(jié)果指針 */

$rows, /* 查詢結(jié)果行數(shù) */

$fields, /* 查詢結(jié)果列數(shù) */

$data, /* 數(shù)據(jù)結(jié)果 */

$arows, /* 發(fā)生作用的紀錄行數(shù)目 */

$iid; /* 上次插入操作后,可能存在的"AUTO_INCREMENT"屬性字段的值,如果為"0",則為空 */

var $user, $pass, $host, $charset;

/*

* 請注意用戶名和密碼是否正確

*/

function Setup ($host, $user, $pass, $charset='utf8') {

$this-host = $host;

$this-user = $user;

$this-pass = $pass;

$this-charset = $charset;

}

function Connect ($db = "") {

global $CFG_MYSQL_INFO;

if (!$this-host) {

$this-host = $CFG_MYSQL_INFO["host"];

}

if (!$this-user) {

$this-user = $CFG_MYSQL_INFO["user"]; /* 在這里作修改 */

}

if (!$this-pass) {

$this-pass = $CFG_MYSQL_INFO["passwd"]; /* 在這里作修改 */

}

if (!$this-charset) {

$this-charset = "utf8"; /* 在這里作修改 */

}

if (empty($db))

$this-db = $CFG_MYSQL_INFO["database"];

else

$this-db = $db;

$this-id = @mysql_connect($this-host, $this-user, $this-pass);

if (!$this-id)

return false;

$this-SelectDB($this-db); /* 定位到指定數(shù)據(jù)庫 */

$this-Query("SET NAMES '".$this-charset."'");

return true;

}

function Close(){

@mysql_close($this-id);

}

function SelectDB ($db) {

if(!@mysql_select_db($db, $this-id))

return false;

else

return true;

}

function Begin () {

$this-result = @mysql_query("START TRANSACTION WITH CONSISTENT SNAPSHOT", $this-id);

if (!$this-result)

return false;

return true;

}

function Commit () {

$this-result = @mysql_query("COMMIT", $this-id);

if (!$this-result)

return false;

return true;

}

function Rollback () {

$this-result = @mysql_query("ROLLBACK", $this-id);

if (!$this-result)

return false;

return true;

}

function Escape ($str) {

$escstr = mysql_escape_string($str);

return $escstr;

}

# 普通查詢功能,主要用于返回結(jié)果是多條記錄的情況

# 請使用 Fetch 方法取得每條記錄信息

function Query ($query) {

$this-result = @mysql_query($query, $this-id);

if (!$this-result)

{

if ($this-debug)

MySQL_ErrorMsg ("不能執(zhí)行查詢(query): $query");

else

return false;

}

$this-rows = @mysql_num_rows($this-result);

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

if (!$this-rows) return false;

return true;

}

function QuerySql ($query) {

$ret = @mysql_query($query, $this-id);

if ($ret === false)

{

if ($this-debug)

MySQL_ErrorMsg ("不能執(zhí)行查詢(query): $query");

else

return false;

}

$this-result = $ret;

$this-rows = @mysql_num_rows($this-result);

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

return true;

}

# 如果查詢結(jié)果為單條記錄時使用,返回結(jié)果存儲于數(shù)組 data 中

function QueryRow ($query) {

$this-result = @mysql_query($query, $this-id);

if (!$this-result)

{

if ($this-debug)

MySQL_ErrorMsg ("不能執(zhí)行查詢(query): $query");

else

return false;

}

$this-rows = @mysql_num_rows($this-result);

$this-data = @mysql_fetch_array($this-result, MYSQL_ASSOC);

//MySQL_ErrorMsg ("不能從查詢結(jié)果中取得數(shù)據(jù) $query");

if (!$this-result || !$this-rows)

return false;

return true;

}

# 移動到指定記錄行,將該行結(jié)果儲存于數(shù)組 data 中

function Fetch ($row) {

if(!@mysql_data_seek($this-result, $row))

//MySQL_ErrorMsg ("不能定位到指定數(shù)據(jù)行 $row");

return false;

$this-data = @mysql_fetch_array($this-result, MYSQL_ASSOC);

//MySQL_ErrorMsg ("不能提取指定數(shù)據(jù)行數(shù)據(jù) $row");

if (!$this-data)

return false;

return true;

}

/* 以下方法將作用于 arows */

/* 此方法將作用于 iid */

function Insert ($query) {

$this-result = @mysql_query($query, $this-id);

if (!$this-result)

{

if ($this-debug)

MySQL_ErrorMsg ("不能執(zhí)行查詢(query): $query");

else

return false;

}

$this-arows = @mysql_affected_rows($this-id);

$this-iid = @mysql_insert_id($this-id);

return true;

}

function Update ($query) {

$this-result = @mysql_query($query, $this-id);

if (!$this-result)

{

if ($this-debug)

MySQL_ErrorMsg ("不能執(zhí)行查詢(query): $query");

else

return false;

}

$this-arows = @mysql_affected_rows($this-id);

if (!$this-arows || $this-arows == -1)

return false;

return true;

}

function Delete ($query) {

$this-result = @mysql_query($query, $this-id);

if (!$this-result)

{

if ($this-debug)

MySQL_ErrorMsg ("不能執(zhí)行查詢(query): $query");

else

return false;

}

$this-arows = @mysql_affected_rows($this-id);

return true;

}

function Error (){

return mysql_error()."(".mysql_errno().")";

}

function Errno (){

return mysql_errno();

}

}

/*

* MySQL_ErrorMsg

* 輸出錯誤信息

*/

function MySQL_ErrorMsg ($msg) {

# 關閉可能影響字符顯示的HTML代碼

echo("/ul/dl/ol\n");

echo("/table/script\n");

# 錯誤信息

$text = "font color=\"#000000\" style=\"font-size: 9pt; line-height: 12pt\"p系統(tǒng)提示:".$msg."br";

$text .= "錯誤信息:";

$text .= mysql_error()."br";

$text .= "錯誤代碼:".mysql_errno()."brbr";

$text .= "請稍候再試,如果問題仍然存在,請與 a href=\"mailto:wuqiong@igenus.org\"系統(tǒng)管理員/a 聯(lián)系!";

$text .= "/font\n";

die($text);

}

}

?

一些細節(jié)的地方自己修改吧 主要是我在別的文件專門定義了全局變量,你看一遍,把應改的地方改一下就好了

PHP Mysql查詢除了自己以外的其它所有數(shù)據(jù)庫怎么寫?

可以添加一個并且條件,例如myid是xxx,那么SQL語句如下:

$sql = "select * from ... where (現(xiàn)在的所有條件在這里并在其外添加括號) AND myid!=xxx;"

php查詢數(shù)據(jù)庫

mysqli有兩種數(shù)據(jù)庫連接方式:

1、面向過程式連接:

mysqli_connect('localhost','xxx','xxx','xxx');

mysqli_query('');

后使用mysqli_fetch_assoc方法獲取到數(shù)據(jù)。

2、面向?qū)ο笫竭B接:

$mysqli?=?new?mysqli("localhost",?"my_user",?"my_password",?"world");

$result?=?$mysqli-query('');

后使用$result-fetch_assoc()獲取數(shù)據(jù)。

至于num_rows是獲取查詢到的行數(shù)的方法。

thinkphp 數(shù)據(jù)庫查詢怎么查?

thinkphp如何查詢數(shù)據(jù)庫?

數(shù)據(jù)庫查詢

ThinkPHP內(nèi)置了非常靈活的查詢方法,可以快速的進行數(shù)據(jù)查詢操作。

查詢條件可以用于CURD等任何操作,作為where方法的參數(shù)傳入即可。

ThinkPHP可以支持直接使用字符串作為查詢條件,但是大多數(shù)情況推薦使用索引數(shù)組或者對象來作為查詢條件,因為會更加安全。

查詢方式

一、使用字符串作為查詢條件

這是最傳統(tǒng)的方式,但是安全性不高,例如:

1

2

$User = M("User"); // 實例化User對象

$User-where('type=1 AND status=1')-select();

最后生成的SQL語句是

1

SELECT * FROM think_user WHERE type=1 AND status=1

二、使用數(shù)組作為查詢條件

1

2

3

4

5

$User = M("User"); // 實例化User對象

$condition['name'] = 'thinkphp';

$condition['status'] = 1;

// 把查詢條件傳入查詢方法

$User-where($condition)-select();

最后生成的SQL語句是

1

SELECT * FROM think_user WHERE 'name'='thinkphp' AND status=1

如果進行多字段查詢,那么字段之間的默認邏輯關系是 邏輯與 AND,但是用下面的規(guī)則可以更改默認的邏輯判斷,通過使用 _logic 定義查詢邏輯:

1

2

3

4

5

6

$User = M("User"); // 實例化User對象

$condition['name'] = 'thinkphp';

$condition['account'] = 'thinkphp';

$condition['_logic'] = 'OR'; //定義查詢邏輯

// 把查詢條件傳入查詢方法

$User-where($condition)-select();

最后生成的SQL語句是

1

SELECT * FROM think_user WHERE 'name'='thinkphp' OR `account`='thinkphp'

三、使用對象方式來查詢 (這里以stdClass內(nèi)置對象為例)

1

2

3

4

5

6

$User = M("User"); // 實例化User對象

// 定義查詢條件

$condition = new stdClass();

$condition-name = 'thinkphp';

$condition-status= 1;

$User-where($condition)-select();

最后生成的SQL語句和上面一樣

1

SELECT * FROM think_user WHERE `name`='thinkphp' AND status=1

使用對象方式查詢和使用數(shù)組查詢的效果是相同的,并且是可以互換的,大多數(shù)情況下,我們建議采用數(shù)組方式更加高效,后面我們會以數(shù)組方式為例來講解具體的查詢語言用法。

表達式查詢

上面的查詢條件僅僅是一個簡單的相等判斷,可以使用查詢表達式支持更多的SQL查詢語法,并且可以用于數(shù)組或者對象方式的查詢(下面僅以數(shù)組方式為例說明),查詢表達式的使用格式:

1

$map['字段名'] = array('表達式','查詢條件');

表達式不分大小寫,支持的查詢表達式有下面幾種,分別表示的含義是:

1

2

3

4

$map['id']? = array('eq',100);? id = 100;

$map['id']? = array('egt',100);id = 100

$map['name'] = array('like','thinkphp%'); name like 'thinkphp%' 模糊查詢

$map['a'] =array('like',array('%thinkphp%','%tp'),'OR');$map['b'] =array('notlike',array('%thinkphp%','%tp'),'AND'); (a like '%thinkphp%' OR a like '%tp') AND (b not like '%thinkphp%' AND b not like '%tp')

本文來自ThinkPHP框架技術文章欄目:

以上就是thinkphp如何查詢數(shù)據(jù)庫的詳細內(nèi)容,更多請關注php中文網(wǎng)其它相關文章!


本文標題:怎樣編寫php查詢數(shù)據(jù)庫 php數(shù)據(jù)庫查詢結(jié)果處理
網(wǎng)頁路徑:http://weahome.cn/article/ddjioge.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部