Go to file
Steve Boyd 17e9f5388c FIX Ignore invalid byte character 2022-04-21 14:14:28 +12:00
_config FIX Quote yample starting with % 2017-07-27 10:41:34 +01:00
code FIX Ignore invalid byte character 2022-04-21 14:14:28 +12:00
docs API Increased support to 9.2 2019-09-03 15:41:23 +12:00
tests BUG Fix issues preventing a site from being migrated from SS3 to SS4 (#104) 2019-09-26 10:25:41 +12:00
.editorconfig BUG Fix postgres + PDO not working 2017-11-20 09:07:32 +13:00
.gitattributes Added standard .gitattributes file 2016-01-16 19:34:48 +13:00
.scrutinizer.yml BUG Fix postgres + PDO not working 2017-11-20 09:07:32 +13:00
.travis.yml MNT Rearrange travis matrix 2021-01-18 11:37:36 +13:00
.upgrade.yml Upgrade code for new namespaces 2016-07-04 13:32:41 +12:00
CHANGELOG MINOR: changelog for the 0.9.2 release 2010-11-11 20:50:57 +00:00
LICENSE MINOR: Documentation update for the 0.9.1 release 2010-06-01 01:31:33 +00:00
README.md API Increased support to 9.2 2019-09-03 15:41:23 +12:00
_register_database.php BUG Fix installer for 4.0 (#58) 2016-10-26 14:24:00 +13:00
code-of-conduct.md Added standard code of conduct file 2016-02-16 11:43:48 +13:00
composer.json MNT Travis shared config, use sminnee/phpunit 2020-12-02 15:41:59 +13:00
phpcs.xml.dist MNT Travis shared config, use sminnee/phpunit 2020-12-02 15:41:59 +13:00
phpunit.xml.dist BUG Fix postgres + PDO not working 2017-11-20 09:07:32 +13:00

README.md

PostgreSQL Module Module

Build Status SilverStripe supported module

Maintainer Contact

Requirements

  • SilverStripe 4.0
  • PostgreSQL >=9.2
  • Note: PostgreSQL 10 has not been tested

Installation

composer require silverstripe/postgresql

Configuration

Environment file

Add the following settings to your .env file:

SS_DATABASE_CLASS=PostgreSQLDatabase
SS_DATABASE_USERNAME=
SS_DATABASE_PASSWORD=

See environment variables for more details. Note that a database will automatically be created via dev/build.

Through the installer

Open the installer by browsing to install.php, e.g. http://localhost/install.php Select PostgreSQL in the database list and enter your database details

Usage Overview

See docs/en for more information about configuring the module.

Known issues

All column and table names must be double-quoted. PostgreSQL automatically lower-cases columns, and your queries will fail if you don't.

Ts_vector columns are not automatically detected by the built-in search filters. That means if you're doing a search through the CMS on a ModelAdmin object, it will use LIKE queries which are very slow. If you're writing your own front-end search system, you can specify the columns to use for search purposes, and you get the full benefits of T-Search.

If you are using unsupported modules, there may be instances of MySQL-specific SQL queries which will need to be made database-agnostic where possible.