util::ns_set_to_tcl_string (public)

 util::ns_set_to_tcl_string set_id

Defined in packages/acs-tcl/tcl/utilities-procs.tcl

Return a plain text version of the passed-in ns_set, useful for debugging and introspection.

Parameters:
set_id
Returns:
text string conisting of multiple lines of the form "key: value"

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.
Source code:
        set result ""
        foreach {key value} [ns_set array $set_id] {
            append result "$key : $value\n"
        }
        return $result
XQL Not present:
PostgreSQL, Oracle
Generic XQL file:
packages/acs-tcl/tcl/utilities-procs.xql

[ hide source ] | [ make this the default ]
Show another procedure: