Bit Badger Documents PHP implementation with PDO
Go to file
2024-06-11 07:03:50 -04:00
src First cut of ID generation need detection 2024-06-10 21:40:47 -04:00
tests Add config details to README 2024-06-11 07:03:50 -04:00
.gitattributes Exclude tests and other files 2024-06-09 20:50:43 -04:00
.gitignore Initial SQLite development (#1) 2024-06-08 23:58:45 +00:00
composer.json Add auto ID enum, modify insert queries 2024-06-10 21:12:21 -04:00
composer.lock Add auto ID enum, modify insert queries 2024-06-10 21:12:21 -04:00
LICENSE Initial commit 2024-06-03 23:07:15 +00:00
README.md Add config details to README 2024-06-11 07:03:50 -04:00

PDODocument

This library allows SQLite (and, by v1.0.0-beta1, PostgreSQL) to be treated as a document database. It is a PHP implementation of the .NET BitBadger.Documents library.

Add via Composer

Packagist Version

composer require bit-badger/pdo-document

Configuration

Connection Details

The static variable Configuration::$pdoDSN must be set to the PDO data source name for your database. Configuration also has $username, $password, and $options variables that will be used to construct the PDO object it will use for data access.

Document Identifiers

Each document must have a unique identifier. By default, the library assumes that this is a property or array key named id, but this can be controlled by setting Configuration::$idField. Once documents exist, this should not be changed.

IDs can be generated automatically on insert. The AutoId enumeration has 4 values:

  • AutoId::None is the default; no IDs will be generated
  • AutoId::Number will assign max-ID-plus-one to documents with an ID of 0
  • AutoId::UUID will generate a v4 UUID for documents with an empty string ID
  • AutoId::RandomString will generate a string of letters and numbers for documents with an empty string ID; Configuration::$idStringLength controls the length of the generated string, and defaults to 16 characters

In all generated scenarios, if the ID value is not 0 or blank, that ID will be used instead of a generated one.

Usage

Documentation for this library is not complete; however, its structure is very similar to the .NET version, so its documentation will help until its project specific documentation is developed. Things like Count.All() become Count::all, and all the byField operations are named byFields and take an array of fields.