xo::db::sql::acs_activity proc new (public)
xo::db::sql::acs_activity new [ -dbn dbn ] \ [ -activity_id activity_id ] -name name \ [ -description description ] [ -html_p html_p ] \ [ -status_summary status_summary ] [ -object_type object_type ] \ [ -creation_date creation_date ] [ -creation_user creation_user ] \ [ -creation_ip creation_ip ] [ -context_id context_id ] \ [ -childof childof ]
Defined in /var/www/openacs.org/packages/xotcl-core/tcl/05-db-procs.tcl
Automatically generated method
- Switches:
- -dbn (optional)
- -activity_id (optional)
- -name (required)
- -description (optional)
- -html_p (optional, defaults to
"f"
)- -status_summary (optional)
- -object_type (optional, defaults to
"acs_activity"
)- -creation_date (optional, defaults to
"now()"
)- -creation_user (optional)
- -creation_ip (optional)
- -context_id (optional)
- -childof (optional)
- Testcases:
- No testcase defined.
Source code: #function_args: {ACTIVITY_ID null} {NAME {}} {DESCRIPTION null} {HTML_P f} {STATUS_SUMMARY null} {OBJECT_TYPE acs_activity} {CREATION_DATE now()} {CREATION_USER null} {CREATION_IP null} {CONTEXT_ID null} foreach var [list ACTIVITY_ID NAME DESCRIPTION HTML_P STATUS_SUMMARY OBJECT_TYPE CREATION_DATE CREATION_USER CREATION_IP CONTEXT_ID] { 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__new($_ACTIVITY_ID, $_NAME, $_DESCRIPTION, $_HTML_P, $_STATUS_SUMMARY, $_OBJECT_TYPE, $_CREATION_DATE, $_CREATION_USER, $_CREATION_IP, $_CONTEXT_ID) " 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