bootpress/sqlite
Composer 安装命令:
composer require bootpress/sqlite
包简介
Extends the BootPress Database Component to create and update tables and indexes at will, and simplifies FTS full-text searching.
README 文档
README
Extends the BootPress\Database\Component to easily create and update SQLite database tables and indexes at will. It overrides the underlying PDO wrappers of the Database Component to use the PHP SQLite3 class. The main reason is so that you can free the file from it's cold dead hands when you $db->connection()->close(). The only side effect of that is you can't fetch 'obj' or 'named' rows. Otherwise, we are just adding more functionality here. It also facilitates FTS full-text searching.
Installation
Add the following to your composer.json file.
{
"require": {
"bootpress/sqlite": "^1.0"
}
}
Example Usage
<?php use BootPress\SQLite\Component as Sqlite; $db = new Sqlite; // An in-memory database if ($db->created) { $db->settings('version', '1.0'); $db->create('employees', array( 'id' => 'INTEGER PRIMARY KEY', 'name' => 'TEXT COLLATE NOCASE', 'position' => 'TEXT NOT NULL DEFAULT ""', ), array('unique'=>'position')); // Wait, I just changed my mind: $db->create('employees', array( 'id' => 'INTEGER PRIMARY KEY', 'name' => 'TEXT UNIQUE COLLATE NOCASE', 'title' => 'TEXT DEFAULT ""', ), 'title', array( 'position' => 'title', )); $db->fts->create('results', 'search'); // You can insert, update, and query an FTS table the same as any other. if ($stmt = $db->insert('results', array('docid', 'search'))) { $db->insert($stmt, array(100, 'Fisherman never die, they just get reel tired.')); $db->insert($stmt, array(101, 'If wishes were fishes, we\'d have a fish fry.')); $db->insert($stmt, array(102, 'Women want me, fish fear me.')); $db->insert($stmt, array(103, 'Good things come to those who bait.')); $db->insert($stmt, array(104, 'A reel expert can tackle anything.')); } } echo $db->settings('version'); // 1.0 echo $db->fts->count('results', 'fish')); // 2 print_r($db->fts->search('results', 'fish')); /* array( array( 'docid' => 101, 'snippet' => "If wishes were <b>fishes</b>, we'd have a <b>fish</b> fry.", 'offsets' => '0 0 15 6 0 0 35 4', 'rank' => 1.333, ), array( 'docid' => 102, 'snippet' => 'Women want me, <b>fish</b> fear me.', 'offsets' => '0 0 15 4', 'rank' => .666, ), ) */ echo implode(', ', $db->fts->words('results', 'fish', 101)); // fishes, fish
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 1.23k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-09-26