Aphp version of PDO database operation class (only applicable to Mysql)
* Parameter Description
* int $debug Whether to enable debugging, if enabled, the sql statement will be output* 0 Not enabled
* 1 Open
* 2 Start and terminate the program
* int $mode return type
* 0 Return multiple records
* 1 Return a single record
* 2 Return the number of rows
* string/array $table database table, two value-passing modes
* Normal mode:
* 'tb_member, tb_money'
* Array mode:
* array('tb_member', 'tb_money')
* string/array $fields Database fields to be queried, allowed to be empty, default is to search all, two value-passing modes
* Normal mode:
* 'username, password'
* Array mode:
* array('username', 'password')
* string/array $sqlwhere query conditions, empty allowed, two value-passing modes
* Normal mode:
* 'and type = 1 and username like "%os%"'
* Array mode:
* array('type = 1', 'username like "%os%"')
* string $orderby sorting, the default is id reverse order
All resources on this site are contributed by netizens or reprinted by major download sites. Please check the integrity of the software yourself! All resources on this site are for learning reference only. Please do not use them for commercial purposes. Otherwise, you will be responsible for all consequences! If there is any infringement, please contact us to delete it. Contact information: admin@php.cn
Related Article
21Jul2016
Brand new PDO database operation class php version (only applicable to Mysql). Copy the code The code is as follows: /** * Author: Hu Rui * Date: 2012/07/21 * Email: hooray0905@foxmail.com */ class HRDB{ protected $pdo; protected $res; protected $config; /*Constructor
12Aug2017
This article mainly introduces the PDO database operation class encapsulated by PHP, and analyzes related operation skills of PDO based on PDO for database addition, deletion, modification, transaction, batch addition and other related operation techniques based on specific examples. Friends in need can refer to the following
25Jul2016
PHP uses PDO to operate the database class (applicable to Mysql)
13Jul2016
mysql database operation class. mysql database operation class This section uses the php mysql database operation class function. It can delete, modify, add, backup and other operations on the database. It also supports two database connections.
20Jul2016
The best PHP database operation class-ezSQL. ezSQL is a very easy-to-use PHP database operation class. The database operation of the famous open source blog WordPress uses the MySQL part of ezSQL. This database operation class supports almost all mainstream
13Jul2016
mysql operation class. ?php /** * Database operation class * 2011/8/25 * kcj * */ class MyDB { private $db_host; //Database host name private $db_user; //Database user name private $db_pwd; //Database password p
Hot Tools
Object-oriented php operation mssql class
Object-oriented php operation mssql class
Complete PHP operation MySQL database class
Complete PHP operation MySQL database class