Index: openacs-4/packages/acs-authentication/tcl/driver-procs-oracle.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/driver-procs-oracle.xql,v
diff -u
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ openacs-4/packages/acs-authentication/tcl/driver-procs-oracle.xql	2 Sep 2003 11:35:01 -0000	1.1
@@ -0,0 +1,17 @@
+<?xml version="1.0"?>
+
+<queryset>
+    <rdbms><type>oracle</type><version>8.1.6</version></rdbms>
+
+    <fullquery name="auth::driver::set_parameter_value.set_parameter">
+        <querytext>            
+            update auth_driver_params
+            set    value = empty_clob()
+            where  key = :parameter
+            and    impl_id = :impl_id
+            and    authority_id = :authority_id
+            returning value into :1
+        </querytext>
+    </fullquery>
+
+</queryset>
Index: openacs-4/packages/acs-authentication/tcl/driver-procs-postgresql.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/driver-procs-postgresql.xql,v
diff -u
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ openacs-4/packages/acs-authentication/tcl/driver-procs-postgresql.xql	2 Sep 2003 11:35:01 -0000	1.1
@@ -0,0 +1,16 @@
+<?xml version="1.0"?>
+
+<queryset>
+    <rdbms><type>postgresql</type><version>7.1</version></rdbms>
+
+    <fullquery name="auth::driver::set_parameter_value.set_parameter">
+        <querytext>            
+            update auth_driver_params
+            set    value = :value
+            where  key = :parameter
+            and    impl_id = :impl_id
+            and    authority_id = :authority_id
+        </querytext>
+    </fullquery>
+
+</queryset>