Go to file
Damian Mooyman 0bd28649f5 Merge pull request #21 from dhensby/pulls/2.0/travis-fix
Update travis for 4.0 tests
2016-03-24 11:57:08 +13:00
_config API Upgraded module to use new database ORM 2014-07-11 09:06:33 +12:00
code Converted to PSR-2 2015-12-18 07:11:01 +13:00
.editorconfig Added standard .editorconfig file 2015-12-17 10:06:47 +13:00
.gitattributes Added standard .gitattributes file 2016-01-16 19:32:49 +13:00
.scrutinizer.yml Added standard Scrutinizer config 2016-03-23 23:18:23 +13:00
.travis.yml Update travis for 4.0 tests 2016-03-23 12:48:55 +00:00
LICENSE Create LICENSE 2013-09-02 21:20:35 +12:00
README.md Update docs and alias dev-master as 1.4 2014-07-11 08:57:13 +12:00
_config.php API Upgraded module to use new database ORM 2014-07-11 09:06:33 +12:00
_configure_database.php API Upgraded module to use new database ORM 2014-07-11 09:06:33 +12:00
_register_database.php API Upgraded module to use new database ORM 2014-07-11 09:06:33 +12:00
code-of-conduct.md Added standard code of conduct file 2016-02-16 11:42:22 +13:00
composer.json Update travis for 4.0 tests 2016-03-23 12:48:55 +00:00

README.md

SQLite3 Module

Build Status

Maintainer Contact

Andreas Piening (Nickname: apiening) <andreas (at) silverstripe (dot) com>

Requirements

  • SilverStripe 3.2 or newer

Installation

  • If using composer, run composer require silverstripe/sqlite3 1.4.*-dev.
  • Otherwise, download, unzip and copy the sqlite3 folder to your project root so that it becomes a sibling of framework/.

Configuration

Either use the installer to automatically install SQLite or add this to your _config.php (right after "require_once("conf/ConfigureFromEnv.php");" if you are using _ss_environment.php)

$databaseConfig['type'] = 'SQLiteDatabase';
$databaseConfig['path'] = "/path/to/my/database/file";

Make sure the webserver has sufficient privileges to write to that folder and that it is protected from external access.

Sample mysite/_config.php

<?php
global $project;
$project = 'mysite';

global $database;
$database = 'SS_mysite';

require_once("conf/ConfigureFromEnv.php");

global $databaseConfig;

$databaseConfig = array(
	"type" => 'SQLiteDatabase',
	"server" => 'none',
	"username" => 'none',
	"password" => 'none',
	"database" => $database,
	"path" => "/path/to/my/database/file",
);

SSViewer::set_theme('blackcandy');
SiteTree::enable_nested_urls();

Again: make sure that the webserver has permission to read and write to the above path (/path/to/my/database/, 'file' would be the name of the sqlite db file)

URL parameter

If you're trying to change a field constrain to NOT NULL on a field that contains NULLs dev/build fails because it might corrupt existing records. In order to perform the action anyway add the URL parameter 'avoidConflict' when running dev/build which temporarily adds a conflict clause to the field spec. E.g.: http://www.my-project.com/?avoidConflict=1

Open Issues

  • SQLite3 is supposed to work with all may not work with certain modules as they are using custom SQL statements passed to the DB class directly ;(
  • there is no real fulltext search yet and the build-in search engine is not ordering by relevance, check out fts3