xo::db::sql::acs_activity proc edit (public)
xo::db::sql::acs_activityedit [ -dbn dbn ] -activity_id activity_id \ [ -name name ] [ -description description ] [ -html_p html_p ] \ [ -status_summary status_summary ]
Defined in /var/www/openacs.org/packages/xotcl-core/tcl/05-db-procs.tcl
Automatically generated method
- Switches:
- -dbn (optional)
- -activity_id (required)
- -name (optional)
- -description (optional)
- -html_p (optional)
- -status_summary (optional)
- Testcases:
- No testcase defined.
Source code: #function_args: {ACTIVITY_ID {}} {NAME null} {DESCRIPTION null} {HTML_P null} {STATUS_SUMMARY null} foreach var [list ACTIVITY_ID NAME DESCRIPTION HTML_P STATUS_SUMMARY] { set varname [string tolower $var] if {[info exists $varname]} { set $var [set $varname] set _$var :$var } else { set _$var null } } set sql " select acs_activity__edit($_ACTIVITY_ID, $_NAME, $_DESCRIPTION, $_HTML_P, $_STATUS_SUMMARY) " db_with_handle -dbn $dbn db { #ns_log notice "--sql=$sql" return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ] }XQL Not present: Generic, PostgreSQL, Oracle