# 数据库驱动器参考
这是一个平台无关的数据库实现基类,该类不会被直接调用, 而是通过特定的数据库适配器类来继承和实现该类。
关于数据库驱动器,已经在其他几篇文档中介绍过,这篇文档将作为它们的一个参考。
>[danger] 重要
> 并不是所有的方法都被所有的数据库驱动器所支持, 当不支持的时候,有些方法可能会失败(返回 FALSE)。
classCI_DB_driver
>[info] ### initialize()
返回: TRUE on success, FALSE on failure
返回类型: bool
初始化数据库配置,建立对数据库的连接。
>[info] ### db_connect($persistent = TRUE)
参数:
* **$persistent** (bool) -- Whether to establish a persistent connection or a regular one
返回: Database connection resource/object or FALSE on failure
返回类型: mixed
建立对数据库的连接。
> 注解
> 返回值取决于当前使用的数据库驱动器,例如 mysqli 实例将会返回 'mysqli' 驱动器。
>[info] ### db_pconnect()
返回: Database connection resource/object or FALSE on failure
返回类型: mixed
建立对数据库的连接,使用持久连接。
> 注解
> 该方法其实就是调用 db_connect(TRUE) 。
>[info] ### reconnect()
返回: TRUE on success, FALSE on failure
返回类型: bool
如果超过服务器的超时时间都没有发送任何查询请求, 使用该方法可以让数据库连接保持有效,或重新连接数据库。
>[info] ### db_select([$database = ''])
参数:
* **$database** (string) -- Database name
返回: TRUE on success, FALSE on failure
返回类型: bool
切换到某个数据库。
>[info] ### db_set_charset($charset)
参数:
* **$charset** (string) -- Character set name
返回: TRUE on success, FALSE on failure
返回类型: bool
设置客户端字符集。
>[info] ### platform()
返回: Platform name
返回类型: string
当前使用的数据库平台(mysql、mssql 等)。
>[info] ### version()
返回: The version of the database being used
返回类型: string
数据库版本。
>[info] ### query($sql[, $binds = FALSE[, $return_object = NULL]]])
参数:
* **$sql** (string) -- The SQL statement to execute
* **$binds** (array) -- An array of binding data
* **$return_object** (bool) -- Whether to return a result object or not
返回: TRUE for successful "write-type" queries, CI_DB_result instance (method chaining) on "query" success, FALSE on failure
返回类型: mixed
执行一个 SQL 查询。
如果是读类型的查询,执行 SQL 成功后将返回结果对象。
有以下几种可能的返回值:
* 如果是写类型的查询,执行成功返回 TRUE
* 执行失败返回 FALSE
* 如果是读类型的查询,执行成功返回 CI_DB_result 对象
>[info] ### simple_query($sql)
参数:
* **$sql** (string) -- The SQL statement to execute
返回: Whatever the underlying driver's "query" function returns
返回类型: mixed
query() 方法的简化版,当你只需要简单的执行一个查询,并不关心查询的结果时, 可以使用该方法。
>[info] ### trans_strict([$mode = TRUE])
参数:
* **$mode** (bool) -- Strict mode flag
返回类型: void
启用或禁用事务的严格模式。
在严格模式下,如果你正在运行多组事务,只要有一组失败,所有组都会被回滚。 如果禁用严格模式,那么每一组都被视为独立的组, 这意味着其中一组失败不会影响其他的组。
>[info] ### trans_off()
返回类型: void
实时的禁用事务。
>[info] ### trans_start([$test_mode = FALSE])
参数:
* **$test_mode** (bool) -- Test mode flag
返回类型: void
开启一个事务。
>[info] ### trans_complete()
返回类型: void
结束事务。
>[info] ### trans_status()
返回: TRUE if the transaction succeeded, FALSE if it failed
返回类型: bool
获取事务的状态,用来判断事务是否执行成功。
>[info] ### compile_binds($sql, $binds)
参数:
* **$sql** (string) -- The SQL statement
* **$binds** (array) -- An array of binding data
返回: The updated SQL statement
返回类型: string
根据绑定的参数值编译 SQL 查询。
>[info] ### is_write_type($sql)
参数:
* **$sql** (string) -- The SQL statement
返回: TRUE if the SQL statement is of "write type", FALSE if not
返回类型: bool
判断查询是写类型(INSERT、UPDATE、DELETE),还是读类型(SELECT)。
>[info] ### elapsed_time([$decimals = 6])
参数:
* **$decimals** (int) -- The number of decimal places
返回: The aggregate query elapsed time, in microseconds
返回类型: string
计算查询所消耗的时间。
>[info] ### total_queries()
返回: The total number of queries executed
返回类型: int
返回当前已经执行了多少次查询。
>[info] ### last_query()
返回: The last query executed
返回类型: string
返回上一次执行的查询。
>[info] ### escape($str)
参数:
* **$str** (mixed) -- The value to escape, or an array of multiple ones
返回: The escaped value(s)
返回类型: mixed
根据输入数据的类型进行数据转义,包括布尔值和空值。
>[info] ### escape_str($str[, $like = FALSE])
参数:
* **$str** (mixed) -- A string value or array of multiple ones
* **$like** (bool) -- Whether or not the string will be used in a LIKE condition
返回: The escaped string(s)
返回类型: mixed
转义字符串。
警告
返回的字符串没有用引号引起来。
>[info] ### escape_like_str($str)
参数:
* **$str** (mixed) -- A string value or array of multiple ones
返回: The escaped string(s)
返回类型: mixed
转义 LIKE 字符串。
和 escape_str() 方法类似,但同时也对 LIKE 语句中的 % 和 _ 通配符进行转义。
>[info] ### primary($table)
参数:
* **$table** (string) -- Table name
返回: The primary key name, FALSE if none
返回类型: string
获取一个表的主键。
注解
如果数据库不支持主键检测,将假设第一列就是主键。
>[info] ### count_all([$table = ''])
参数:
* **$table** (string) -- Table name
返回: Row count for the specified table
返回类型: int
返回表中的总记录数。
>[info] ### list_tables([$constrain_by_prefix = FALSE])
参数:
* **$constrain_by_prefix** (bool) -- TRUE to match table names by the configured dbprefix
返回: Array of table names or FALSE on failure
返回类型: array
返回当前数据库的所有表。
>[info] ### table_exists($table_name)
参数:
* **$table_name** (string) -- The table name
返回: TRUE if that table exists, FALSE if not
返回类型: bool
判断某个数据库表是否存在。
>[info] ### list_fields($table)
参数:
* **$table** (string) -- The table name
返回: Array of field names or FALSE on failure
返回类型: array
返回某个表的所有字段名。
field_exists($field_name, $table_name)
参数:
* **$table_name** (string) -- The table name
* **$field_name** (string) -- The field name
返回:TRUE if that field exists in that table, FALSE if not
返回类型: bool
判断某个字段是否存在。
>[info] ### field_data($table)
参数:
* **$table** (string) -- The table name
返回: Array of field data items or FALSE on failure
返回类型: array
获取某个表的所有字段信息。
>[info] ### escape_identifiers($item)
参数:
* **$item** (mixed) -- The item or array of items to escape
返回: The input item(s), escaped
返回类型: mixed
对 SQL 标识符进行转义,例如列名、表名、关键字。
>[info] ### insert_string($table, $data)
参数:
* **$table** (string) -- The target table
* **$data** (array) -- An associative array of key/value pairs
返回: The SQL INSERT statement, as a string
返回类型: string
生成 INSERT 语句。
>[info] ### update_string($table, $data, $where)
参数:
* **$table** (string) -- The target table
* **$data** (array) -- An associative array of key/value pairs
* **$where** (mixed) -- The WHERE statement conditions
返回: The SQL UPDATE statement, as a string
返回类型: string
生成 UPDATE 语句。
>[info] ### call_function($function)
参数:
* **$function** (string) -- Function name
返回: The function result
返回类型: string
使用一种平台无关的方式执行一个原生的 PHP 函数。
>[info] ### cache_set_path([$path = ''])
参数:
* **$path** (string) -- Path to the cache directory
返回类型: void
设置缓存路径。
>[info] ### cache_on()
返回: TRUE if caching is on, FALSE if not
返回类型: bool
启用数据库结果缓存。
>[info] ### cache_off()
返回: TRUE if caching is on, FALSE if not
|返回类型: bool
禁用数据库结果缓存。
>[info] ### cache_delete([$segment_one = ''[, $segment_two = '']])
参数:
* **$segment_one** (string) -- First URI segment
* **$segment_two** (string) -- Second URI segment
返回: TRUE on success, FALSE on failure
返回类型: bool
删除特定 URI 的缓存文件。
>[info] ### cache_delete_all()
返回: TRUE on success, FALSE on failure
返回类型: bool
删除所有缓存文件。
>[info] ### close()
返回类型: void
关闭数据库的连接。
>[info] ### display_error([$error = ''[, $swap = ''[, $native = FALSE]]])
参数:
* **$error** (string) -- The error message
* **$swap** (string) -- Any "swap" values
* **$native** (bool) -- Whether to localize the message
返回类型: void
返回: Displays the DB error screensends the application/views/errors/error_db.php template
显示一个错误信息,并终止脚本执行。
错误信息是使用 application/views/errors/error_db.php 文件中的模板来显示。
>[info] ### protect_identifiers($item[, $prefix_single = FALSE[, $protect_identifiers = NULL[, $field_exists = TRUE]]])
参数:
* **$item** (string) -- The item to work with
* **$prefix_single** (bool) -- Whether to apply the dbprefix even if the input item is a single identifier
* **$protect_identifiers** (bool) -- Whether to quote identifiers
* **$field_exists** (bool) -- Whether the supplied item contains a field name or not
返回:
The modified item
返回类型: string
根据配置的 dbprefix 参数,给列名或表名(可能是表别名)添加一个前缀。
为了处理包含路径的列名,必须要考虑一些逻辑。
例如下面的查询:
~~~
SELECT * FROM hostname.database.table.column AS c FROM hostname.database.table
~~~
或者下面这个查询,使用了表别名:
~~~
SELECT m.member_id, m.member_name FROM members AS m
~~~
由于列名可以包含四段(主机、数据库名、表名、字段名)或者有一个表别名的前缀, 我们需要做点工作来判断这一点,才能将 dbprefix 插入到正确的位置。
该方法在查询构造器类中被广泛使用。
- 欢迎使用 CodeIgniter
- 安装说明
- 下载 CodeIgniter
- 安装说明
- 从老版本升级
- 疑难解答
- CodeIgniter 概览
- CodeIgniter 将从这里开始
- CodeIgniter 是什么?
- 支持特性
- 应用程序流程图
- 模型-视图-控制器
- 设计与架构目标
- 教程 - 内容提要
- 加载静态内容
- 读取新闻条目
- 创建新闻条目
- 结束语
- 常规主题
- CodeIgniter URL
- 控制器
- 保留名称
- 视图
- 模型
- 辅助函数
- 使用 CodeIgniter 类库
- 创建类库
- 使用 CodeIgniter 驱动器
- 创建驱动器
- 创建核心系统类
- 创建附属类
- 钩子 - 扩展框架核心
- 自动加载资源
- 公共函数
- 兼容性函数
- URI 路由
- 错误处理
- 网页缓存
- 程序分析
- 以 CLI 方式运行
- 管理你的应用程序
- 处理多环境
- 在视图文件中使用 PHP 替代语法
- 安全
- PHP 开发规范
- 类库参考
- 基准测试类
- 缓存驱动器
- 日历类
- 购物车类
- 配置类
- Email 类
- 加密类
- 加密类(新版)
- 文件上传类
- 表单验证类
- FTP 类
- 图像处理类
- 输入类
- Javascript 类
- 语言类
- 加载器类
- 迁移类
- 输出类
- 分页类
- 模板解析类
- 安全类
- Session 类
- HTML 表格类
- 引用通告类
- 排版类
- 单元测试类
- URI 类
- 用户代理类
- XML-RPC 与 XML-RPC 服务器类
- Zip 编码类
- 数据库参考
- 数据库快速入门: 示例代码
- 数据库配置
- 连接你的数据库
- 查询
- 生成查询结果
- 查询辅助函数
- 查询构造器类
- 事务
- 数据库元数据
- 自定义函数调用
- 数据库缓存类
- 数据库工厂类
- 数据库工具类
- 数据库驱动器参考
- 辅助函数参考
- 数组辅助函数
- 验证码辅助函数
- Cookie 辅助函数
- 日期辅助函数
- 目录辅助函数
- 下载辅助函数
- 邮件辅助函数
- 文件辅助函数
- 表单辅助函数
- HTML 辅助函数
- 语言辅助函数
- Inflector 辅助函数
- 数字辅助函数
- 路径辅助函数
- 安全辅助函数
- 表情辅助函数
- 字符串辅助函数
- 文本辅助函数
- 排版辅助函数
- URL 辅助函数
- XML 辅助函数
- 向 CodeIgniter 贡献你的力量