Index: openacs-4/contrib/packages/survey/www/admin/section-edit-2-oracle.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/survey/www/admin/Attic/section-edit-2-oracle.xql,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/survey/www/admin/section-edit-2-oracle.xql 7 Feb 2004 12:08:31 -0000 1.1
@@ -0,0 +1,13 @@
+
+
+
+ oracle8.1.6
+
+
+
+ select question_id from survey_questions where
+ section_id=:section_id and 0=dbms_lob.compare(question_text,(select question_text
+ from survey_questions where section_id=:section_id and rownum=1))
+
+
+
Index: openacs-4/contrib/packages/survey/www/admin/section-edit-2-postgresql.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/survey/www/admin/Attic/section-edit-2-postgresql.xql,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/survey/www/admin/section-edit-2-postgresql.xql 7 Feb 2004 12:08:31 -0000 1.1
@@ -0,0 +1,14 @@
+
+
+ postgresql7.1
+
+
+
+ select question_id from survey_questions where
+ section_id=:section_id and question_text = (select question_text
+ from survey_questions where section_id=:section_id
+ limit 1)
+
+
+
+
Index: openacs-4/contrib/packages/survey/www/admin/section-edit-2.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/survey/www/admin/Attic/section-edit-2.xql,v
diff -u -r1.2 -r1.3
--- openacs-4/contrib/packages/survey/www/admin/section-edit-2.xql 26 Jan 2004 15:39:41 -0000 1.2
+++ openacs-4/contrib/packages/survey/www/admin/section-edit-2.xql 7 Feb 2004 12:08:31 -0000 1.3
@@ -32,13 +32,6 @@
-
-
- select question_id from survey_questions where
- section_id=:section_id and 0=dbms_lob.compare(question_text,(select question_text
- from survey_questions where section_id=:section_id and rownum=1))
-
-