ホームページ > バックエンド開発 > PHPチュートリアル > Mysqlデータベース操作クラス(バージョン1127、ソースコードダウンロード可能)_PHPチュートリアル

Mysqlデータベース操作クラス(バージョン1127、ソースコードダウンロード可能)_PHPチュートリアル

WBOY
リリース: 2016-07-21 15:33:25
オリジナル
833 人が閲覧しました

Mysql.class.php をダウンロードします

コードをコピーします コードは次のとおりです:
class Mysql { //ホストアドレス
private $db_pass; //接続パスワード
private $db_charset; /Encoding
private $conn;
public $debug=false;//デフォルトでオフになっているデバッグ スイッチ
private $query_id; //SQL ステートメントが正常に実行されたかどうかを判断するために使用されます
private $result; private $num_rows ; //結果セット内の行数、select
でのみ有効ですprivate $insert_id //前の INSERT 操作によって生成された ID
//Constructor/destructor
function __construct ($db_host,$db_user,$ db_pass,$db_name ,$db_charset,$conn) {
$this->db_host = $db_host;
$this->db_pass = $db_pass; ;db_name = $ db_name;
$this->db_charset = $db_charset;
$this->connect();
関数 __destruct () $this->conn);
}
//データベースの接続/選択
public function connect () {
if ($this->conn == 'pconn') {
@$this->conn = mysql_pconnect ($this->db_host,$this->db_user,$this->db_pass);
} else {
@$this->conn = mysql_connect($this->db_host,$this-> db_user,$this ->db_pass);
}
if (!$this->conn) {
$this->show_error('データベース接続に失敗しました: ユーザー名またはパスワードが間違っています! ');
}
if (!@mysql_select_db($this->db_name,$this->show_error("データベースの選択に失敗しました: データベース $this->db_name は次のとおりです)使用できません ");
}
mysql_query("SET NAMES $this->db_charset");
return $this->conn;
}
// クエリメソッド
public function query ($sql) {
if ($this->query_id) $this->free_result();
$this->query_id = @mysql_query($sql,$this->conn);
if (!$this->query_id) $this ->show_error("SQL ステートメント"$sql" 実行中にエラーが発生しました");
return $this->query_id;
// 詳細なエラー情報を表示します
public function function show_error ($msg) {
if($this->debug){
$errinfo = mysql_error();
echo "エラー: $msg
戻り値: $errinfo

"; }else {
echo '

エラーが発生しました!

';
}
}
// 取得query実行成功否の情報
public function get_query_info($info){
if ($this->query_id) {
echo $info;
}
}
// すべて
public function findall ($table_name) {
$this->query("select * from $table_name");
}
// mysql_fetch_array
public function fetch_array () {
if ($this->query_id) {
$this->result = mysql_fetch_array($this->query_id);
$this->結果を返す;
}
}
// ......
public function fetch_assoc () {
if ($this->query_id) {
$this->result = mysql_fetch_assoc($this->query_id);
$this->結果を返す;
}
}
public function fetch_row () {
if ($this->query_id) {
$this->result = mysql_fetch_row($this->query_id);
$this->結果を返す;
}
}
public function fetch_object () {
if ($this->query_id) {
$this->result = mysql_fetch_object($this->query_id);
$this->結果を返す;
}
}
// 取得 num_rows
public function num_rows () {
if ($this->query_id) {
$this->num_rows = mysql_num_rows($this->query_id);
return $this->num_rows;
}
}
// 获取 insert_id
public function insert_id () {
return $this->insert_id = mysql_insert_id();
}
// 共有数张表を表示
public function show_tables () {
$this->query("show tables");
if ($this->query_id) {
echo "数据库 $this->db_name 共有 ".$this->num_rows($this->query_id)." 张表
";
$i = 1;
while ($row = $this->fetch_array($this->query_id)){
echo "$i -- $row[0]
";
$i++;
}
}
}
// 共通のデータを表示
public function show_dbs(){
$this->query("show Databases");
if ($this->query_id) {
echo "共有数据库 ".$this->num_rows($this->query_id)." 个
";
$i = 1;
while ($this->row = $this->fetch_array($this->query_id)){
echo "$i -- ".$this->row[データベース]。"
";
$i++;
}
}
}
// 删除数据库:返删除结果
public function drop_db ($db_name='') {
if ($db_name == '') {
$db_name = $this->db_name;/ /默认删除当前データベース库
$this->query("DROP DATABASE $db_name");
}else {
$this->query("DROP DATABASE $db_name");
}
if ($this->query_id) {
return "データベース库 $db_name 删除成功";
}else {
$this->show_error("数据库 $db_name 删除失败");
}
}
// 删除データベース表:返删除结果
public function drop_table ($table_name) {
$this->query("DROP TABLE $table_name");
if ($this->query_id) {
return "データベース表 $table_name 删除成功";
}else {
$this->show_error("データベース表 $table_name 删除失败");
}
}
// 创建データベース库
public function create_db ($db_name) {
$this->query("CREATE DATABASE $db_name");
if($this->query_id){
return "データベース库 $db_name 创建成功";
}else {
$this->show_error("データベース库 $db_name 创建失败");
}
}
// 获取データベース库バージョン
public function get_info(){
echo mysql_get_server_info();
}
// 释放内存
public function free_result () {
if ( @mysql_free_result($this->query_id) )
unset ($this->result);
$this->query_id = 0;
}
} // 授業を終了します
?>


www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/322615.html技術記事 Mysql.class.php をダウンロードします。 // 主机地址 private $db_user; //用户名 private $db_pass; //连接密码 private $db_name...
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート