search
My PDO classAug 08, 2016 am 09:28 AM
functiongtpublicquotsql

<?php /*
public function db_insert($sql) 			#插入数据
public function db_delete($sql) 			#删除数据
public function db_update($sql) 			#更新数据
public function db_getOne($sql) 			#获取一条数据
public function db_getAll($sql) 			#获取多条数据
public function db_tran_start() 			#开启事务
public function db_tran_commit() 			#事务提交
public function db_tran_rollback() 			#事务回滚
public function db_prepare($sql ,$params ) 	        #预编译机制
*/

header("content-type:text/html;charset=utf-8");

class MePDO{
	// 定义属性
	private $dsn;
	private $user;
	private $password;
	private $pdo;

	//定义构造函数

	public function __construct($arr=array()){

		$this->dsn = isset($arr['dsn'])?$arr['dsn']:'mysql:host=localhost;dbname=project;';
		$this->user = isset($arr['user'])?$arr['user']:'root';
		$this->password = isset($arr['password'])?$arr['password']:'759114';
		$this->pdo= new PDO($this->dsn,$this->user,$this->password);           #实例化pdo对象
	}

	//利用PDO实现数据库操作
	/*
	@param  string  $sql  对sql语句进行判定
	*/
	private function _Exec($sql){
		try{									#进行错误处理

			$res = $this->pdo->exec($sql);
			if(!$res){							#语句错误,抛出异常
				throw new PDOException('出错啦!');
			}else{
				return $res;
			}
		}
		catch(PDOException $e){
			echo $e->getMessage();				     #输出异常信息
			echo "<br>";
			echo "错误所在行:".$e->getLine()."<br>";
			echo "错误编号:".$this->pdo->errorInfo()[1]."<br>";
			echo "错误信息:".$this->pdo->errorInfo()[2]."<br>";
			exit();
		}
	}

	// 进行插入操作
	/*
	* @param  string $sql
	*@return int 受影响行数
	*/
	public function db_insert($sql){
		$res = $this->_Exec($sql);				#执行操作
		return $this->pdo->lastInsertId();
	}

	// 进行插入操作
	/*
	* @param  string $sql
	*@return int 受影响行数
	*/
	public function db_delete($sql){
		$affected = $this->_Exec($sql);				#执行操作
		return $affected;
	}	


	//进行更新操作
	/*
		@param  string $sql  要插入的sql语句
		@retutn int 受影响的行数
	*/
	public function db_update($sql){
		$affected = $this->_Exec($sql);			#执行操作
		return $affected;						#返回受影响的行数
	}

	// 判断查询语句的语法是否正确
	private function Iserror($sql){
		try{
			//执行语句
			$res = $this->pdo->query($sql);
			if(!$res){							#语句错误,抛出异常
				throw new PDOException('出错啦!');
			}
			return $res;

			//语句正确
		}catch(PDOException $e){
			echo $e->getMessage();           	#输出错误信息
			echo "<br>";
			echo "错误所在行:".$e->getLine()."<br>";
			echo "错误编号:".$this->pdo->errorInfo()[1]."<br>";
			echo "错误信息:".$this->pdo->errorInfo()[2]."<br>";
			exit();
		}
	}

	//进行获取操作
	/*
		@param  string   $sql
		@return  array  返回一个数组
	*/
	public function db_getOne($sql){

		$stmt = $this->Iserror($sql);				 #执行sql 语句进行查询, 与exec 方法不同
		$row = $stmt->fetch(PDO::FETCH_ASSOC);   	 #返回一个关联数组
		return $row;
	}

	#获取多行数据
	/*
		@param  string  		$sql 		要执行的语句
		@return  array  		返回一个数组
	*/
	public function db_getAll($sql){
		$stmt = $this->Iserror($sql);
		$rows =$stmt->fetchAll($stmt,PDO::FETCH_ASSOC);
		return $rows;
	}

	//pdo 事务处理
	/*	Tran_start   开启事务
		@param    string     $sp  保存点,默认是sp1
		@return boolean
	*/
	public function db_tran_start($sp='sp1'){
		
		#执行语句,开启事务
		$res = $this->pdo->beginTransaction();	
		return true;
	}

	/*
		事务提交
		@return boolean  
	*/
	public function db_tran_commit(){
	
			$this->pdo->commit();		
	}

	//事务回滚
	public function db_tran_rollback(){
			$this->rollBack();		
	}

	//预编译处理
	/*
		@param  string   $sql       #sql 语句中使用 ? 作为占位符
		@param  array    $params
		@param  array    $arr   
	*/
	public function db_prepare($sql ,$params ){
		#prepare的 预编译语句不需要 Iserror判断
		$stmt = $this->pdo->prepare($sql);

		#执行语句
		$stmt->execute($params);
		$res = $stmt->fetchAll(PDO::FETCH_ASSOC);
		return $res;
	}
}

The above introduces my PDO class, including the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
SQL Server使用CROSS APPLY与OUTER APPLY实现连接查询SQL Server使用CROSS APPLY与OUTER APPLY实现连接查询Aug 26, 2022 pm 02:07 PM

本篇文章给大家带来了关于SQL的相关知识,其中主要介绍了SQL Server使用CROSS APPLY与OUTER APPLY实现连接查询的方法,文中通过示例代码介绍的非常详细,下面一起来看一下,希望对大家有帮助。

SQL Server解析/操作Json格式字段数据的方法实例SQL Server解析/操作Json格式字段数据的方法实例Aug 29, 2022 pm 12:00 PM

本篇文章给大家带来了关于SQL server的相关知识,其中主要介绍了SQL SERVER没有自带的解析json函数,需要自建一个函数(表值函数),下面介绍关于SQL Server解析/操作Json格式字段数据的相关资料,希望对大家有帮助。

聊聊优化sql中order By语句的方法聊聊优化sql中order By语句的方法Sep 27, 2022 pm 01:45 PM

如何优化sql中的orderBy语句?下面本篇文章给大家介绍一下优化sql中orderBy语句的方法,具有很好的参考价值,希望对大家有所帮助。

function是什么意思function是什么意思Aug 04, 2023 am 10:33 AM

function是函数的意思,是一段具有特定功能的可重复使用的代码块,是程序的基本组成单元之一,可以接受输入参数,执行特定的操作,并返回结果,其目的是封装一段可重复使用的代码,提高代码的可重用性和可维护性。

一文搞懂SQL中的开窗函数一文搞懂SQL中的开窗函数Sep 02, 2022 pm 04:55 PM

本篇文章给大家带来了关于SQL server的相关知识,开窗函数也叫分析函数有两类,一类是聚合开窗函数,一类是排序开窗函数,下面这篇文章主要给大家介绍了关于SQL中开窗函数的相关资料,文中通过实例代码介绍的非常详细,需要的朋友可以参考下。

SqlServer创建自动收缩事务日志任务的图文详解SqlServer创建自动收缩事务日志任务的图文详解Sep 09, 2022 pm 01:41 PM

本篇文章给大家带来了关于SQL server的相关知识,SQL Server数据库存在一个问题,如果你限制了它的日志文件的大小,那么当数据库日志达到这个大小的时候,数据库就会停止写入日志,下面这介绍了关于SqlServer创建自动收缩事务日志任务的相关资料,希望对大家有帮助。

linux运行sql文件命令是什么linux运行sql文件命令是什么Mar 02, 2023 am 10:30 AM

linux运行sql文件命令是“psql -f test.sql”,其Linux运行sql脚本的方法是:1、使用shell工具登录到安装postgresql的服务器;2、编辑sql脚本内容;3、通过“psql -f test.sql”命令执行“test.sql”脚本即可。

SQL Server跨服务器操作数据库的图文方法(LinkedServer)SQL Server跨服务器操作数据库的图文方法(LinkedServer)Nov 02, 2022 pm 04:13 PM

本篇文章给大家带来了关于SQL的相关知识,其中主要介绍了SQL Server跨服务器操作数据库的图文方法,SQL Server Management Studio (SSMS) 是用于管理SQL Server 基础结构的集成环境,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software