Index: openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl,v diff -u -r1.37 -r1.38 --- openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl 10 Sep 2003 12:30:07 -0000 1.37 +++ openacs-4/packages/acs-tcl/tcl/00-database-procs.tcl 30 Sep 2003 12:10:03 -0000 1.38 @@ -535,7 +535,7 @@
     # Oracle:
     db_exec_plsql delete_note {
-        begin  note.delete(:note_id);  end;
+        begin  note.del(:note_id);  end;
     }
 
     # PostgreSQL:
@@ -587,9 +587,9 @@
     # Oracle:
     db_exec_plsql delete_note {
         begin
-        note.delete(:note_id);
-        note.delete(:another_note_id);
-        note.delete(:yet_another_note_id);
+        note.del(:note_id);
+        note.del(:another_note_id);
+        note.del(:yet_another_note_id);
         end;
     }
 
@@ -619,7 +619,7 @@
     <fullquery name="delete_note">      
       <querytext>
         begin
-        note.delete(:note_id);
+        note.del(:note_id);
         end;
       </querytext>
     </fullquery>