PHP Class Db, thinksns

Author: Scott Haefner ([email protected])
Afficher le fichier Open project: medz/thinksns-4 Class Usage Examples

Méthodes publiques

Свойство Type Description
$debug 是否显示调试信息 如果启用会在知识文件记录sql语句

Protected Properties

Свойство Type Description
$_linkID 当前连接ID
$autoFree 是否自动释放查询结果
$beginTime SQL 执行时间记录
$comparison 数据库表达式
$config 数据库连接参数配置
$connected 是否已经连接数据库
$error 错误信息
$lastInsID 最后插入ID
$linkID 数据库连接ID 支持多个连接
$numCols 返回字段数
$numRows 返回或者影响记录数
$pconnect 是否使用永久连接
$queryID 当前查询ID
$queryStr 当前SQL指令
$selectSql 查询表达式
$transTimes 事务指令数

Méthodes publiques

Méthode Description
Q ( mixed $times = '' ) 查询次数更新或者查询
W ( mixed $times = '' ) 写入次数更新或者查询
__construct ( array $config = '' ) 架构函数
__destruct ( ) 析构方法
addConnect ( mixed $config, mixed $linkNum = null ) +---------------------------------------------------------- 增加数据库连接(相同类型的) +---------------------------------------------------------- +----------------------------------------------------------
close ( ) 关闭数据库
commit ( ) : boolen 用于非自动提交状态下面的查询提交
connect ( $config = '', $linkNum ) 连接数据库方法
delete ( array $options = [] ) : false | integer 删除记录
error ( ) : string 数据库错误信息 并显示当前的SQL语句
escape_string ( string $str ) : string SQL指令安全过滤
execute ( string $str ) : integer 执行语句 针对 INSERT, UPDATE 以及DELETE
free ( ) 释放查询结果
getAsFieldArray ( $field = '*', $nouse = '' ) : array 获取以传入的参数的数据结果集合
getFields ( $tableName ) 取得数据表的字段信息
getHashList ( $hashKey = '', $hashValue = '*' ) : array 获取以hashkey作为键值的hash数组
getInstance ( $config = null ) : object 获取数据库单例实例
getLastSql ( ) : string 获取最近一次查询的sql语句
getTables ( $dbName = '' ) 取得数据库的表信息
insert ( mixed $data, array $options = [] ) : false | integer 插入记录
insertAll ( mixed $datas, array $options = [] ) : false | integer +---------------------------------------------------------- 插入记录 +---------------------------------------------------------- +----------------------------------------------------------
parseDSN ( string $dsnStr ) : array +---------------------------------------------------------- DSN解析 格式: mysql://username:passwd@localhost:3306/DbName
query ( string $str ) : mixed 执行查询 主要针对 SELECT, SHOW 等指令 返回数据集
replace ( mixed $data, array $options = [] ) : false | integer 替换记录
rollback ( ) : boolen 事务回滚
select ( array $options = [] ) : array 查找记录
selectInsert ( string $fields, string $table, $options = [] ) : false | integer 通过Select方式插入记录
startTrans ( ) 启动事务
switchConnect ( integer $linkNum ) +---------------------------------------------------------- 切换数据库连接 +---------------------------------------------------------- +----------------------------------------------------------
update ( mixed $data, array $options ) : false | integer 更新记录

Méthodes protégées

Méthode Description
addSpecialChar ( mixed &$value ) : mixed 字段和表名添加` 保证指令中使用关键字不出错 针对mysql
debug ( ) 数据库调试 记录当前SQL
initConnect ( boolean $master = true ) +---------------------------------------------------------- 初始化数据库连接 +---------------------------------------------------------- +----------------------------------------------------------
multiConnect ( boolean $master = false ) +---------------------------------------------------------- 连接分布式服务器 +---------------------------------------------------------- +----------------------------------------------------------
parseDistinct ( mixed $distinct ) : string distinct分析
parseField ( mixed $fields ) : string field分析
parseGroup ( mixed $group ) : string group分析
parseHaving ( string $having ) : string having分析
parseJoin ( mixed $join ) : string join分析
parseLimit ( $limit ) : string limit分析
parseLock ( $lock = false ) : string 设置锁机制
parseOrder ( mixed $order ) : string order分析
parseSet ( array $data ) : string set分析
parseTable ( $tables ) : string table分析
parseThinkWhere ( string $key, mixed $val ) : string 特殊条件分析
parseValue ( mixed &$value ) : string value分析
parseWhere ( mixed $where ) : string where分析

Private Methods

Méthode Description
getAll ( ) : array 获得所有的查询数据
parseConfig ( mixed $db_config = '' ) : string 分析数据库配置信息,支持数组和DSN

Method Details

Q() public méthode

查询次数更新或者查询
public Q ( mixed $times = '' )
$times mixed

W() public méthode

写入次数更新或者查询
public W ( mixed $times = '' )
$times mixed

__construct() public méthode

架构函数
public __construct ( array $config = '' )
$config array 数据库配置数组

__destruct() public méthode

析构方法
public __destruct ( )

addConnect() public méthode

+---------------------------------------------------------- 增加数据库连接(相同类型的) +---------------------------------------------------------- +----------------------------------------------------------
public addConnect ( mixed $config, mixed $linkNum = null )
$config mixed 数据库连接信息
$linkNum mixed 创建的连接序号 +---------------------------------------------------------- +----------------------------------------------------------

addSpecialChar() protected méthode

字段和表名添加` 保证指令中使用关键字不出错 针对mysql
protected addSpecialChar ( mixed &$value ) : mixed
$value mixed
Résultat mixed

close() public méthode

关闭数据库
public close ( )

commit() public méthode

用于非自动提交状态下面的查询提交
public commit ( ) : boolen
Résultat boolen

connect() public méthode

连接数据库方法
public connect ( $config = '', $linkNum )

debug() protected méthode

数据库调试 记录当前SQL
protected debug ( )

delete() public méthode

删除记录
public delete ( array $options = [] ) : false | integer
$options array 表达式
Résultat false | integer | integer

error() public méthode

数据库错误信息 并显示当前的SQL语句
public error ( ) : string
Résultat string

escape_string() public méthode

SQL指令安全过滤
public escape_string ( string $str ) : string
$str string SQL字符串
Résultat string

execute() public méthode

执行语句 针对 INSERT, UPDATE 以及DELETE
public execute ( string $str ) : integer
$str string sql指令
Résultat integer

free() public méthode

释放查询结果
public free ( )

getAsFieldArray() public méthode

获取以传入的参数的数据结果集合
public getAsFieldArray ( $field = '*', $nouse = '' ) : array
Résultat array

getFields() public méthode

取得数据表的字段信息
public getFields ( $tableName )

getHashList() public méthode

获取以hashkey作为键值的hash数组
public getHashList ( $hashKey = '', $hashValue = '*' ) : array
Résultat array

getInstance() public static méthode

获取数据库单例实例
Author: Seven Du ([email protected])
public static getInstance ( $config = null ) : object
Résultat object self

getLastSql() public méthode

获取最近一次查询的sql语句
public getLastSql ( ) : string
Résultat string

getTables() public méthode

取得数据库的表信息
public getTables ( $dbName = '' )

initConnect() protected méthode

+---------------------------------------------------------- 初始化数据库连接 +---------------------------------------------------------- +----------------------------------------------------------
protected initConnect ( boolean $master = true )
$master boolean 主服务器 +---------------------------------------------------------- +----------------------------------------------------------

insert() public méthode

插入记录
public insert ( mixed $data, array $options = [] ) : false | integer
$data mixed 数据
$options array 参数表达式
Résultat false | integer | integer

insertAll() public méthode

+---------------------------------------------------------- 插入记录 +---------------------------------------------------------- +----------------------------------------------------------
public insertAll ( mixed $datas, array $options = [] ) : false | integer
$datas mixed 数据
$options array 参数表达式 +----------------------------------------------------------
Résultat false | integer | integer +----------------------------------------------------------

multiConnect() protected méthode

+---------------------------------------------------------- 连接分布式服务器 +---------------------------------------------------------- +----------------------------------------------------------
protected multiConnect ( boolean $master = false )
$master boolean 主服务器 +---------------------------------------------------------- +----------------------------------------------------------

parseDSN() public méthode

+---------------------------------------------------------- DSN解析 格式: mysql://username:passwd@localhost:3306/DbName
public parseDSN ( string $dsnStr ) : array
$dsnStr string
Résultat array

parseDistinct() protected méthode

distinct分析
protected parseDistinct ( mixed $distinct ) : string
$distinct mixed
Résultat string

parseField() protected méthode

field分析
protected parseField ( mixed $fields ) : string
$fields mixed
Résultat string

parseGroup() protected méthode

group分析
protected parseGroup ( mixed $group ) : string
$group mixed
Résultat string

parseHaving() protected méthode

having分析
protected parseHaving ( string $having ) : string
$having string
Résultat string

parseJoin() protected méthode

join分析
protected parseJoin ( mixed $join ) : string
$join mixed
Résultat string

parseLimit() protected méthode

limit分析
protected parseLimit ( $limit ) : string
Résultat string

parseLock() protected méthode

设置锁机制
protected parseLock ( $lock = false ) : string
Résultat string

parseOrder() protected méthode

order分析
protected parseOrder ( mixed $order ) : string
$order mixed
Résultat string

parseSet() protected méthode

set分析
protected parseSet ( array $data ) : string
$data array
Résultat string

parseTable() protected méthode

table分析
protected parseTable ( $tables ) : string
Résultat string

parseThinkWhere() protected méthode

特殊条件分析
protected parseThinkWhere ( string $key, mixed $val ) : string
$key string
$val mixed
Résultat string

parseValue() protected méthode

value分析
protected parseValue ( mixed &$value ) : string
$value mixed
Résultat string

parseWhere() protected méthode

where分析
protected parseWhere ( mixed $where ) : string
$where mixed
Résultat string

query() public méthode

执行查询 主要针对 SELECT, SHOW 等指令 返回数据集
public query ( string $str ) : mixed
$str string sql指令
Résultat mixed

replace() public méthode

替换记录
public replace ( mixed $data, array $options = [] ) : false | integer
$data mixed 数据
$options array 参数表达式
Résultat false | integer | integer

rollback() public méthode

事务回滚
public rollback ( ) : boolen
Résultat boolen

select() public méthode

查找记录
public select ( array $options = [] ) : array
$options array 表达式
Résultat array

selectInsert() public méthode

通过Select方式插入记录
public selectInsert ( string $fields, string $table, $options = [] ) : false | integer
$fields string 要插入的数据表字段名
$table string 要插入的数据表名
Résultat false | integer | integer

startTrans() public méthode

启动事务
public startTrans ( )

switchConnect() public méthode

+---------------------------------------------------------- 切换数据库连接 +---------------------------------------------------------- +----------------------------------------------------------
public switchConnect ( integer $linkNum )
$linkNum integer 创建的连接序号 +---------------------------------------------------------- +----------------------------------------------------------

update() public méthode

更新记录
public update ( mixed $data, array $options ) : false | integer
$data mixed 数据
$options array 表达式
Résultat false | integer | integer

Property Details

$_linkID protected_oe property

当前连接ID
protected $_linkID

$autoFree protected_oe property

是否自动释放查询结果
protected $autoFree

$beginTime protected_oe property

SQL 执行时间记录
protected $beginTime

$comparison protected_oe property

数据库表达式
protected $comparison

$config protected_oe property

数据库连接参数配置
protected $config

$connected protected_oe property

是否已经连接数据库
protected $connected

$debug public_oe property

是否显示调试信息 如果启用会在知识文件记录sql语句
public $debug

$error protected_oe property

错误信息
protected $error

$lastInsID protected_oe property

最后插入ID
protected $lastInsID

$linkID protected_oe property

数据库连接ID 支持多个连接
protected $linkID

$numCols protected_oe property

返回字段数
protected $numCols

$numRows protected_oe property

返回或者影响记录数
protected $numRows

$pconnect protected_oe property

是否使用永久连接
protected $pconnect

$queryID protected_oe property

当前查询ID
protected $queryID

$queryStr protected_oe property

当前SQL指令
protected $queryStr

$selectSql protected_oe property

查询表达式
protected $selectSql

$transTimes protected_oe property

事务指令数
protected $transTimes