数据库工厂类¶
数据库工厂类(Database Forge)包含了帮助你管理你的数据库的一些相关方法。
初始化 Forge 类¶
重要
为了初始化forge类,你的数据库驱动程序必须已经在运行,因为forge类是依赖它运行的。
加载 Forge 类的代码如下:
$forge = \Config\Database::forge();
你可以将另外一个数据可组名传递给 DB Forge加载程序,以防要管理的数据库不是默认数据库:
$this->myforge = $this->load->dbforge('other_db');
在上面的示例中,我们传递的是另一个数据库的名称作为第一个参数来连接。
创建和删除数据库¶
$forge->createDatabase(‘db_name’)
用于创建指定数据库,根据成败返回 TRUE 或 FALSE:
if ($forge->createDatabase('my_db'))
{
echo 'Database created!';
}
$forge->dropDatabase(‘db_name’)
用于删除指定数据库,根据成败返回 TRUE 或 FALSE:
if ($forge->dropDatabase('my_db'))
{
echo 'Database deleted!';
}
创建和删除数据表¶
在创建表时,你可能希望做一些事情。如添加字段,向表中添加键,更改列。CodeIgniter 为此提供了一种机制。
添加字段¶
字段是通过关联数组创建的。在数组中,必须包括与字段的数据类型相关的’type’键。例如,int、varchar、text等。许多数据类型(例如varchar)还需要“约束”键。
$fields = array(
'users' => array(
'type' => 'VARCHAR',
'constraint' => '100',
),
);
// 添加字段时将转换为"users VARCHAR(100)"。
此外,可以使用以下键/值:
- unsigned/true : 在字段定义中生成 “UNSIGNED” 。
- default/value : 在字段定义中生成默认值。
- null/true : 在字段定义中生成”NULL”。如果没有这个,该字段将默认为”NOT NULL”。
- auto_increment/true : 在字段上生成auto_increment标志。请注意,字段类型必须是支持此类型的类型,例如整数。
- unique/true : 为字段定义生成唯一键。
$fields = array(
'blog_id' => array(
'type' => 'INT',
'constraint' => 5,
'unsigned' => TRUE,
'auto_increment' => TRUE
),
'blog_title' => array(
'type' => 'VARCHAR',
'constraint' => '100',
'unique' => TRUE,
),
'blog_author' => array(
'type' =>'VARCHAR',
'constraint' => '100',
'default' => 'King of Town',
),
'blog_description' => array(
'type' => 'TEXT',
'null' => TRUE,
),
);
定义字段后,可以使用 $forge->addField($fields);
然后调用 createTable()
方法。
$forge->addField()
add fields方法将接受上述数组。
将字符串作为字段传递¶
如果你确切知道要如何创建字段,可以使用addField()方法将字符串传递给字段定义
$forge->addField("label varchar(100) NOT NULL DEFAULT 'default label'");
注解
将原始字符串作为字段传递后,不能用 add_key()
对这些字段进行调用。
注解
对 add_field() 的多次调用是累积的。
创建一个id字段¶
创建id字段有一个特殊例外。具有类型id的字段将自动分配为 INT(9) auto_incrementing 主键。
$forge->addField('id');
// 提出 id INT(9) NOT NULL AUTO_INCREMENT
添加键¶
通常来说,表都会有键。这可以使用 $forge->addKey(‘field’)方法来实现。第二个参数设置是可选的,设置为 TRUE 将使其成为主键, 第三个参数设置为 TRUE 将使其成为唯一键。注意 addKey()方法必须紧跟在createTable()方法后面。
包含多列的非主键必须使用数组来添加,下面是 MySQL 的例子。
$forge->addKey('blog_id', TRUE);
// gives PRIMARY KEY `blog_id` (`blog_id`)
$forge->addKey('blog_id', TRUE);
$forge->addKey('site_id', TRUE);
// gives PRIMARY KEY `blog_id_site_id` (`blog_id`, `site_id`)
$forge->addKey('blog_name');
// gives KEY `blog_name` (`blog_name`)
$forge->addKey(array('blog_name', 'blog_label'));
// gives KEY `blog_name_blog_label` (`blog_name`, `blog_label`)
$forge->addKey(array('blog_id', 'uri'), FALSE, TRUE);
// gives UNIQUE KEY `blog_id_uri` (`blog_id`, `uri`)
为了使代码读取更加客观,还可以使用特定的方法添加主键和唯一键。:
$forge->addPrimaryKey('blog_id');
// gives PRIMARY KEY `blog_id` (`blog_id`)
外键有助于跨表强制执行关系和操作。对于支持外键的表,可以直接在forge中添加它们。:
$forge->addUniqueKey(array('blog_id', 'uri'));
// gives UNIQUE KEY `blog_id_uri` (`blog_id`, `uri`)
添加外键¶
$forge->addForeignKey('users_id','users','id');
// gives CONSTRAINT `TABLENAME_users_foreign` FOREIGN KEY(`users_id`) REFERENCES `users`(`id`)
你可以为约束的 “on delete” 和 “on update” 属性指定所需的操作:
$forge->addForeignKey('users_id','users','id','CASCADE','CASCADE');
// gives CONSTRAINT `TABLENAME_users_foreign` FOREIGN KEY(`users_id`) REFERENCES `users`(`id`) ON DELETE CASCADE ON UPDATE CASCADE
创建表格¶
声明字段和键后,你可以根据如下代码创建一张新表
$forge->createTable('table_name');
// gives CREATE TABLE table_name
可选的第二个参数设置为TRUE时会在定义中添加”IF NOT EXISTS”子句
$forge->createTable('table_name', TRUE);
// gives CREATE TABLE IF NOT EXISTS table_name
你还可以传递可选的表属性,例如MySQL的 ENGINE
:
$attributes = array('ENGINE' => 'InnoDB');
$forge->createTable('table_name', FALSE, $attributes);
// produces: CREATE TABLE `table_name` (...) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci
注解
除非你指定 CHARACTER SET
和/或 COLLATE
属性,
createTable()
否则将始终使用你配置的 charset
和 DBCollat 值, 只要它们不为空 (仅限MySQL).
删除表¶
执行DROP TABLE语句时,可以选择添加一个IF EXISTS子句。
// Produces: DROP TABLE table_name
$forge->dropTable('table_name');
// Produces: DROP TABLE IF EXISTS table_name
$forge->dropTable('table_name',TRUE);
修改表¶
向表中添加列¶
$forge->addColumn()
使用 addColumn()
方法用于对现有数据表进行修改,它的参数和上面介绍的字段数组一样,并且可以用于无限数量的附加字段。
$fields = array(
'preferences' => array('type' => 'TEXT')
);
$forge->addColumn('table_name', $fields);
// Executes: ALTER TABLE table_name ADD preferences TEXT
如果你使用 MySQL 或 CUBIRD ,你可以使用 AFTER 和 FIRST 语句来为新添加的列指定位置。
例如:
// Will place the new column after the `another_field` column:
$fields = array(
'preferences' => array('type' => 'TEXT', 'after' => 'another_field')
);
// Will place the new column at the start of the table definition:
$fields = array(
'preferences' => array('type' => 'TEXT', 'first' => TRUE)
);
类引用¶
-
class
CodeIgniterDatabaseForge
¶ -
addColumn
($table[, $field = array()])¶ 参数: - $table (string) – Table name to add the column to
- $field (array) – Column definition(s)
返回: TRUE on success, FALSE on failure
返回类型: bool
Adds a column to a table. Usage: See `Adding a Column to a Table`_.
-
addField
($field)¶ 参数: - $field (array) – Field definition to add
返回: CodeIgniterDatabaseForge instance (method chaining)
返回类型: Adds a field to the set that will be used to create a table. Usage: See `Adding fields`_.
-
addKey
($key[, $primary = FALSE[, $unique = FALSE]])¶ 参数: - $key (mixed) – Name of a key field or an array of fields
- $primary (bool) – Set to TRUE if it should be a primary key or a regular one
- $unique (bool) – Set to TRUE if it should be a unique key or a regular one
返回: CodeIgniterDatabaseForge instance (method chaining)
返回类型: Adds a key to the set that will be used to create a table. Usage: See `Adding Keys`_.
-
addPrimaryKey
($key)¶ 参数: - $key (mixed) – Name of a key field or an array of fields
返回: CodeIgniterDatabaseForge instance (method chaining)
返回类型: Adds a primary key to the set that will be used to create a table. Usage: See `Adding Keys`_.
-
addUniqueKey
($key)¶ 参数: - $key (mixed) – Name of a key field or an array of fields
返回: CodeIgniterDatabaseForge instance (method chaining)
返回类型: Adds an unique key to the set that will be used to create a table. Usage: See `Adding Keys`_.
-
createDatabase
($db_name)¶ 参数: - $db_name (string) – Name of the database to create
返回: TRUE on success, FALSE on failure
返回类型: bool
Creates a new database. Usage: See `Creating and Dropping Databases`_.
-
createTable
($table[, $if_not_exists = FALSE[, array $attributes = array()]])¶ 参数: - $table (string) – Name of the table to create
- $if_not_exists (string) – Set to TRUE to add an ‘IF NOT EXISTS’ clause
- $attributes (string) – An associative array of table attributes
返回: TRUE on success, FALSE on failure
返回类型: bool
Creates a new table. Usage: See `Creating a table`_.
-
dropColumn
($table, $column_name)¶ 参数: - $table (string) – Table name
- $column_name (array) – The column name to drop
返回: TRUE on success, FALSE on failure
返回类型: bool
Drops a column from a table. Usage: See `Dropping a Column From a Table`_.
-
dropDatabase
($db_name)¶ 参数: - $db_name (string) – Name of the database to drop
返回: TRUE on success, FALSE on failure
返回类型: bool
Drops a database. Usage: See `Creating and Dropping Databases`_.
-
dropTable
($table_name[, $if_exists = FALSE])¶ 参数: - $table (string) – Name of the table to drop
- $if_exists (string) – Set to TRUE to add an ‘IF EXISTS’ clause
返回: TRUE on success, FALSE on failure
返回类型: bool
Drops a table. Usage: See `Dropping a table`_.
-
modifyColumn
($table, $field)¶ 参数: - $table (string) – Table name
- $field (array) – Column definition(s)
返回: TRUE on success, FALSE on failure
返回类型: bool
Modifies a table column. Usage: See `Modifying a Column in a Table`_.
-
renameTable
($table_name, $new_table_name)¶ 参数: - $table (string) – Current of the table
- $new_table_name (string) – New name of the table
返回: TRUE on success, FALSE on failure
返回类型: bool
Renames a table. Usage: See `Renaming a table`_.
-