2017 © Pedro Peláez
 

library sqlite

Extends the BootPress Database Component to create and update tables and indexes at will, and simplifies FTS full-text searching.

image

bootpress/sqlite

Extends the BootPress Database Component to create and update tables and indexes at will, and simplifies FTS full-text searching.

  • Thursday, January 19, 2017
  • by BootPress
  • Repository
  • 1 Watchers
  • 1 Stars
  • 1,046 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

use BootPress\SQLite\Component as Sqlite;

Packagist ![License MIT][badge-license] HHVM Tested ![PHP 7 Supported][badge-php] Build Status ![Code Climate][badge-code-climate] Test Coverage, (*1)

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., (*2)

Installation

Add the following to your composer.json file., (*3)

``` bash { "require": { "bootpress/sqlite": "^1.0" } }, (*4)


## Example Usage ``` php <?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., (*5)

The Versions

19/01 2017

dev-master

9999999-dev https://www.bootpress.org/components/sqlite.html

Extends the BootPress Database Component to create and update tables and indexes at will, and simplifies FTS full-text searching.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Kyle Gadd

database sqlite sqlite3 bootpress fts

26/09 2016

v1.0

1.0.0.0 https://www.bootpress.org/components/sqlite/

Extends the BootPress Database Component to create and update tables and indexes at will, and simplifies FTS full-text searching.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Kyle Gadd

database sqlite sqlite3 bootpress fts