diff --git a/README.md b/README.md index 650cb41..4f5d553 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This library allows SQLite and PostgreSQL to be treated as document databases. I ### Connection Details -The static variable `Configuration::$pdoDSN` must be set to the [PDO data source name](https://www.php.net/manual/en/pdo.construct.php#refsect1-pdo.construct-parameters) 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. +The [PDO data source name](https://www.php.net/manual/en/pdo.construct.php#refsect1-pdo.construct-parameters) must be provided via `Configuration::useDSN()`. `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 @@ -29,4 +29,4 @@ In all generated scenarios, if the ID value is not 0 or blank, that ID will be u ## Usage -Documentation for this library is not complete (writing it is one of the goals before the “beta” tag is dropped); however, its structure is very similar to the .NET version, so [its documentation will help](https://bitbadger.solutions/open-source/relational-documents/basic-usage.html) 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. +Full documentation [is available on the project site](https://bitbadger.solutions/open-source/pdo-document/).