[Checkins] SVN: relstorage/trunk/README.txt updated README

Shane Hathaway shane at hathawaymix.org
Sat Jan 26 19:40:31 EST 2008


Log message for revision 83262:
  updated README

Changed:
  U   relstorage/trunk/README.txt

-=-
Modified: relstorage/trunk/README.txt
===================================================================
--- relstorage/trunk/README.txt	2008-01-27 00:36:00 UTC (rev 83261)
+++ relstorage/trunk/README.txt	2008-01-27 00:40:31 UTC (rev 83262)
@@ -1,15 +1,32 @@
 
 To make Zope store in RelStorage, patch ZODB/Connection.py using the
-provided patch, then add the following to zope.conf, modifying the
-adapter and params lines to fit your needs.
+provided patch.  The patch is for Zope 2.10.5.  Add the following to
+zope.conf, modifying the adapter and params lines to fit your needs.
 
 
+For PostgreSQL, use this in etc/zope.conf:
+
 %import relstorage
 <zodb_db main>
   mount-point /
   <relstorage>
-    adapter postgresql
-    params host=localhost dbname=zodb user=zope password=...
+    <postgresql>
+    </postgresql>
   </relstorage>
 </zodb_db>
 
+
+For Oracle, use this in etc/zope.conf:
+
+%import relstorage
+<zodb_db main>
+  mount-point /
+  <relstorage>
+    <oracle>
+      user johndoe
+      password opensesame
+      dsn XE
+    </oracle>
+  </relstorage>
+</zodb_db>
+



More information about the Checkins mailing list