Home > php教程 > PHP开发 > body text

CodeIgniter study notes Item4--Database operations in CI

黄舟
Release: 2016-12-29 10:16:05
Original
1440 people have browsed it

CI database configuration file is/application/config/database.php

[code]// 可以创建多个数据库连接配置,通过$active_group选择使用哪个数据库连接
$active_group = 'default';

// 配置是否加载查询构建类,默认为TRUE,通常保持默认值
$query_builder = TRUE;

// 数据库连接配置,可以有多个连接配置,索引需要区分开
$db['default'] = array(
    'dsn'    => '',
    'hostname' => 'localhost',        // ip
    'username' => 'root',            // 用户名
    'password' => '123456',            // 密码
    'database' => 'workplatform',    // 数据库名称
    'dbdriver' => 'mysqli',            // 使用什么库访问数据库
                                    // 目前可以支持cubrid,ibase,mssql,mysql,mysqli,oci8
                                    // odbc, pdo, postgre, sqlite, sqlite3, sqlsrv
    'dbprefix' => '',                // 表前缀
    'pconnect' => FALSE,
    'db_debug' => TRUE,
    'cache_on' => FALSE,            // 是否启用查询缓存
    'cachedir' => '',                // 查询缓存目录
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',                // 交换表前缀,表前缀的替换写法
    'encrypt' => FALSE,
    'compress' => FALSE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => TRUE
Copy after login

Before using the database, you need to use the loader to load the database object

[code]$this->load->database();
Copy after login
Copy after login

After the loading is completed, $this- >db is this database object. All subsequent data operations will be performed by calling the method of this object.

First define the SQL statement:

[code]$sql = 'SELECT * FROM user';
Copy after login

## Then call the query method of the db object to query

[code]$result = $this->db->query($sql);
Copy after login

The return value $result is an object. Different forms of results can be returned by calling its methods, for example: calling its The result() method gets the query results

[code]$users = $result->result();
Copy after login

At this time,

$users
Copy after login

is an object array, or call its result_array() method to get the associative array query results

[code]$users = $result->result_array();
Copy after login
Call the row() method to return the first record or the first record in object form
[code]$users = $result->row();
Copy after login
However, if the SQL is to add, delete, or modify statements, the query() method will return TRUE or FALSE. At this time, the execution results can be obtained through the db method, such as:
[code]$this->db->affected_rows();    // 获取影响的行数
$this->db->insert_id();        // 获取插入数据的id
Copy after login
Before executing the database operation, Since we don’t know whether

$this->db
Copy after login
has been generated before querying, we need to call the

$this->load->database()
Copy after login
method by modifying /application/config/autoload .php file, which allows CI to automatically load the database

[code]$autoload['libraries'] = array('database');
Copy after login
Copy after login

If there are too many variables in the SQL statement, it will affect the writing of the statement. In this case, placeholders can be used to solve the problem

[code]$data[0] = 'dj';
$data[1] = '123456';
$sql = "INSERT INTO user (account, password, usertype, username) VALUES ('1231', ?, '1', ?)";
$result = $this->db->query($sql, $data);
Copy after login

Incoming The elements in the array will replace the ? in SQL in turn, generating the actual SQL statement

Note: When testing this code, due to errors on both sides of the field name Adding ' causes errors to be reported all the time, so take this as a warning.

Connect to your database

There are two ways to connect Database:


AutoConnect

The "AutoConnect" feature will automatically instantiate the database class on every page load. To enable "autoconnect", add database:

[code]$autoload['libraries'] = array('database');
Copy after login
Copy after login


to the library array in application/config/autoload.php手动连接

如果你只有一部分页面需要数据库连接,你可以在那些有需要的函数里手工添加 如下代码来连接数据库,或者写在类的构造函数里,让整个类都可以访问:

[code]$this->load->database();
Copy after login
Copy after login

如果 database() 函数没有指定第一个参数,它将使用数据库配置文件中 指定的组连接数据库。对大多数人而言,这是首选方案。

可用的参数

数据库连接值,用数组或DSN字符串传递;

[code]TRUE/FALSE (boolean) - 是否返回连接ID(参考下文的“连接多数据库”);
TRUE/FALSE (boolean) - 是否启用查询构造器类,默认为 TRUE 。
Copy after login
手动连接到数据库

这个函数的第一个参数是可选的,被用来从你的配置文件中 指定一个特定的数据库组,甚至可以使用没有在配置文件中定义的 数据库连接值。下面是例子:

从你的配置文件中选择一个特定分组:
[code]$this->load->database('group_name');
Copy after login
其中 group_name 是你的配置文件中连接组的名字。

连接一个完全手动指定的数据库,可以传一个数组参数:
[code]$config['hostname'] = 'localhost';
$config['username'] = 'myusername';
$config['password'] = 'mypassword';
$config['database'] = 'mydatabase';
$config['dbdriver'] = 'mysqli';
$config['dbprefix'] = '';
$config['pconnect'] = FALSE;
$config['db_debug'] = TRUE;
$config['cache_on'] = FALSE;
$config['cachedir'] = '';
$config['char_set'] = 'utf8';
$config['dbcollat'] = 'utf8_general_ci';
$this->load->database($config);
Copy after login

注解

对于 PDO 驱动,你应该使用 $config[‘dsn’] 取代 ‘hostname’ 和 ‘database’ 参数:

[code]$config['dsn'] = 'mysql:host=localhost;dbname=mydatabase';
Copy after login


或者你可以使用数据源名称(DSN,Data Source Name)作为参数,DSN 的格式必须类似于下面这样:

[code]$dsn = 'dbdriver://username:password@hostname/database';
$this->load->database($dsn);
Copy after login

当用 DSN 字符串连接时,要覆盖默认配置,可以像添加查询字符串一样添加配置变量。

[code]$dsn = 'dbdriver://username:password@hostname/database?char_set=utf8&dbcollat=utf8_general_ci&cache_on=true&cachedir=/path/to/cache';
$this->load->database($dsn);
Copy after login

注意:将 “group_one” 和 “group_two” 修改为你要连接的组名称 (或者像上面介绍的那样传入连接值数组)

第二个参数 TRUE 表示函数将返回数据库对象。

注解

当你使用这种方式连接数据库时,你将通过你的对象名来执行数据库命令, 而不再是通过这份指南中通篇介绍的,就像下面这样的语法了:

[code]$this->db->query();
$this->db->result();
etc...
Copy after login

取而代之的,你将这样执行数据库命令:

[code]$DB1->query();
$DB1->result();
etc...
Copy after login

注解

如果你只是需要切换到同一个连接的另一个不同的数据库,你没必要创建 独立的数据库配置,你可以像下面这样切换到另一个数据库:

[code]$this->db->db_select($database2_name);
Copy after login


重新连接 / 保持连接有效

当你在处理一些重量级的 PHP 操作时(例如处理图片),如果超过了数据库的超时值, 你应该考虑在执行后续查询之前先调用 reconnect() 方法向数据库发送 ping 命令, 这样可以优雅的保持连接有效或者重新建立起连接。

[code]$this->db->reconnect();
Copy after login

手动关闭连接

虽然 CodeIgniter 可以智能的管理并自动关闭数据库连接,你仍可以用下面的方法显式的关闭连接:

[code]$this->db->close();
Copy after login

查询

[code]$this->db->query();
Copy after login

要提交一个查询,用以下函数:

[code]$this->db->query('YOUR QUERY HERE');
Copy after login

query() 函数以object(对象)的形式返回一个数据库结果集. 当使用 “read” 模式来运行查询时, 你可以使用“显示你的结果集”来显示查询结果; 当使用 “write” 模式来运行查询时, 将会仅根据执行的成功或失败来返回 TRUE 或 FALSE. 当你需要将返回的结果赋值给一个自定义变量的时候, 你可以这样操作:

[code]$query = $this->db->query('YOUR QUERY HERE');

$this->db->simple_query();
Copy after login


这是一个简化版本的 $this->db->query() 函数. 它仅返回 True(bool) 和 False(bool) 以表示查询成功与失败. 它将不会返回查询数据集,无法设置查询计时器(设置环境变量),无法编译绑定数据,不能够存储查询诊断信息。简单地说,他是一个用于提交查询的函数,对于大多数用户而言并不会使用到它。

手工添加数据库前缀

如果你需要为一个数据库手工添加前缀,你可以使用以下步骤。

[code]$this->db->dbprefix('tablename');
// outputs prefix_tablename
Copy after login

保护标识符

在许多数据库中,保护表(table)和字段(field)的名称是明智的,例如在MySQL中使用反引号。Active Record的查询都已被自动保护,然而,如果您需要手动保护一个标识符,您也可以这样:

[code]$this->db->protect_identifiers('table_name');
Copy after login

这个函数也会给你的表名添加一个前缀,它假定在你的数据库配置文件中已指定了一个前缀。可通过将第二个参数设置为TRUE (boolen) 启用前缀:

[code]$this->db->protect_identifiers('table_name', TRUE);
Copy after login
转义查询

将数据转义以后提交到你的数据库是非常好的安全做法,CodeIgniter 提供了 3 个函数帮助你完成这个工作。

$this->db->escape()
Copy after login

这个函数将会确定数据类型,以便仅对字符串类型数据进行转义。并且,它也会自动把数据用单引号括起来,所以你不必手动添加单引号,用法如下:

[code]$sql = "INSERT INTO table (title) VALUES(".$this->db->escape($title).")";
Copy after login
$this->db->escape_str()
Copy after login

此函数将忽略数据类型对传入数据进行转义。更多时候你将使用上面的函数而不是这个。这个函数的使用方法是:

[code]$sql = "INSERT INTO table (title) VALUES('".$this->db->escape_str($title)."')";

$this->db->escape_like_str() This method should be used when strings are to be used in LIKE conditions so that LIKE wildcards ('%', '_') in the string are also properly escaped. 
$search = '20% raise';
$sql = "SELECT id FROM table WHERE column LIKE '%".$this->db->escape_like_str($search)."%'";
Copy after login

封装查询

封装,通过让系统为你组装各个查询语句,能够简化你的查询语法。参加下面的范例:

[code]$sql = "SELECT * FROM some_table WHERE id = ? AND status = ? AND author = ?"; 

$this->db->query($sql, array(3, 'live', 'Rick'));
Copy after login


查询语句中的问号会自动被查询函数中位于第二个参数位置的数组中的值所替代。

 以上就是CodeIgniter学习笔记 Item4--CI中的数据库操作的内容,更多相关内容请关注PHP中文网(www.php.cn)!


source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template