Index: openacs-4/packages/assessment/tcl/as-section-procs-postgresql.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/tcl/as-section-procs-postgresql.xql,v
diff -u -r1.3 -r1.4
--- openacs-4/packages/assessment/tcl/as-section-procs-postgresql.xql 19 Jan 2005 16:49:14 -0000 1.3
+++ openacs-4/packages/assessment/tcl/as-section-procs-postgresql.xql 23 Jan 2005 18:10:48 -0000 1.4
@@ -65,4 +65,29 @@
+
+
+
+ update as_section_data
+ set points = :section_points,
+ completed_datetime = now()
+ where session_id = :session_id
+ and section_id = :section_id
+
+
+
+
+
+
+
+ update as_section_data
+ set creation_datetime= now(),
+ completed_datetime = now(),
+ points = 0
+ where session_id = :session_id
+ and section_id = :section_id
+
+
+
+