summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index 01e7bd2..f1fb65a 100644
--- a/README.markdown
+++ b/README.markdown
@@ -81,7 +81,8 @@ First, `require` the Idiorm source file:
require_once 'idiorm.php';
-Then, pass a *Data Source Name* connection string to the `configure` method of the ORM class. This is used by PDO to connect to your database. For more information, see the [PDO documentation](http://uk2.php.net/manual/en/pdo.construct.php).
+Then, pass a *Data Source Name* connection string to the `configure` method of the ORM class. This is used by PDO to connect to your database. For more information, see the [PDO documentation](http://php.net/manual/en/pdo.construct.php).
+
ORM::configure('sqlite:./example.db');
You may also need to pass a username and password to your database driver, using the `username` and `password` configuration options. For example, if you are using MySQL: