<?php
class
access
function
connect
();dbq="
.realpath
($this
->
databasepath
);$this
->
link
=odbc_connect
($this
->
constr
,$this
->
username
,$this
->
password
,sql_cur_use_odbc
);return
$this
->
link
;if(
$this
->
link
)echo
"恭喜你,資料庫連線成功!"
;elseecho
"資料庫連線失敗!";}
function
query
($sql
)function
first_array
($sql
)function
fetch_row
($query
)function
total_num
($sql
)//取得記錄總數
function
close
()//關閉資料庫連線函式
function
insert
($table
,$field
)//插入記錄函式
$ins
=substr
($ins,0
,-1);$sql
="insertinto"
.$table
."("
.$field
.")values("
.$ins
.")"
;$this
->
query
($sql);}
function
getinfo
($table
,$field
,$id
,$colnum
)//取得當條記錄詳細資訊
}return
$info;}
function
getlist
($table
,$field
,$colnum
,$condition
,$sort
="orderbyiddesc"
)//取得記錄列表
return
$recordlist;}
function
getfieldlist
($table
,$field
,$fieldnum
,$condition=""
,$sort=""
)//取得記錄列表
$rdlist[$i
]=$info;$i
++;}
return
$rdlist;}
function
updateinfo
($table
,$field
,$id
,$set
)//更新記錄
function
deleteinfo
($table
,$field
,$id
)//刪除記錄
function
deleterecord
($table
,$condition
)//刪除指定條件的記錄
function
getcondrecord
($table
,$condition=""
)//取得指定條件的記錄數
}
資料庫操作類
using system using system.web using system.web.ui using system.web.ui.webcontrols using system.web.ui.htmlcontrols using system.data using system.data...
資料庫操作類
資料庫配置 return array db config array 資料庫配置 db host 127.0.0.1 伺服器位址 db name tmp 資料庫名 db user root 使用者名稱 db pwd 密碼 db encode utf8 編碼 db prefix dmtx 資料庫表字首...
資料庫操作類
剛摘下來的資料庫操作類,以後再慢慢更新 using system using system.collections.generic using system.linq using system.text using system.data using system.data.sqlclient us...