Index: openacs-4/packages/acs-subsite/tcl/plsql-utility-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/tcl/plsql-utility-procs.tcl,v diff -u -N -r1.3 -r1.4 --- openacs-4/packages/acs-subsite/tcl/plsql-utility-procs.tcl 27 Oct 2014 16:39:46 -0000 1.3 +++ openacs-4/packages/acs-subsite/tcl/plsql-utility-procs.tcl 7 Aug 2017 23:47:58 -0000 1.4 @@ -55,8 +55,8 @@ then 1 else 0 end - from dual - }] + from dual + }] } @@ -181,13 +181,13 @@

Example:

-set group_id -2
-set sql "select acs_group.name(:group_id) from dual"
-ns_write [plsql_utility::parse_sql $sql]
+   set group_id -2
+   set sql {select acs_group.name(:group_id) from dual}
+   ns_write [plsql_utility::parse_sql $sql]
 
would write the following to the browser:
-select acs_group.name('-2') from dual
+   select acs_group.name('-2') from dual
 
@author Michael Bryzek (mbryzek@arsdigita.com) @@ -319,3 +319,9 @@ } + +# Local variables: +# mode: tcl +# tcl-indent-level: 4 +# indent-tabs-mode: nil +# End: