ad_tcl_vars_to_ns_set (public, deprecated)
ad_tcl_vars_to_ns_set [ -set_id set_id ] [ -put ] [ args... ]
Defined in packages/acs-tcl/tcl/utilities-procs.tcl
Deprecated. Invoking this procedure generates a warning.
Takes a list of variable names and
ns_set update
s values in an ns_set correspondingly: key is the name of the var, value is the value of the var. The caller is (obviously) responsible for freeing the set if need be. DEPRECATED 5.10.1: modern ns_set idioms make this proc obsolete
- Switches:
- -set_id (optional)
- If this switch is specified, it'll use this set instead of creating a new one.
- -put (optional, boolean)
- If this boolean switch is specified, it'll use
ns_set put
instead ofns_set update
(update is default)- Author:
- Lars Pind <lars@pinds.com>
- See Also:
- ns_set
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: ad_log_deprecated proc ad_tcl_vars_to_ns_set ns_log notice "deprecated call: [info level [info level]]" if { ![info exists set_id] } { set set_id [ns_set create] } if { $put_p } { set command put } else { set command update } foreach varname $args { upvar $varname var ns_set $command $set_id $varname $var } return $set_idXQL Not present: PostgreSQL, Oracle Generic XQL file: packages/acs-tcl/tcl/utilities-procs.xql