--- README.txt.old	2008-07-21 15:22:04.000000000 +0100
+++ README.txt	2008-07-21 17:14:55.000000000 +0100
@@ -51,8 +51,22 @@
 $db_options = array('audit_driver' => $audit_driver);
 $db = PHPOF2_DB::factory($dsn, $db_options);
 
+OR
+
+<?php
+require_once 'PHPOF2/DB.php';
+require_once 'PHPOF2/Audit/GenericDb.php';
+
+// The DSN to the main application database
+$dsn = 'mysqli://foo:password@foohost/somedb';
+
+$db = PHPOF2_DB::factory($dsn, array('audit_driver' => 'PHPOF2_Audit_GenericDb'));
+
 class widgets extends PHPOF2_DBTable {
-	protected $audit_logging = true;
+	protected $default_row_class = 'widget';
+}
+
+class widget extends PHPOF2_DBRow_Audited {
 }
 
 $widgets = new widgets($db, 'widgets');
