xo::db::sql::notification_interval proc new (public)
xo::db::sql::notification_interval new [ -dbn dbn ] \ -interval_id interval_id -name name -n_seconds n_seconds \ -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)
- -interval_id (required)
- -name (required)
- -n_seconds (required)
- -creation_date (required)
- -creation_user (required)
- -creation_ip (required)
- -context_id (required)
- -childof (optional)
- Testcases:
- No testcase defined.
Source code: #function_args: {INTERVAL_ID {}} {NAME {}} {N_SECONDS {}} {CREATION_DATE {}} {CREATION_USER {}} {CREATION_IP {}} {CONTEXT_ID {}} foreach var [list INTERVAL_ID NAME N_SECONDS 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 notification_interval__new($_INTERVAL_ID, $_NAME, $_N_SECONDS, $_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