xo::db::sql::acs_privilege proc create_privilege (public)
xo::db::sql::acs_privilege create_privilege [ -dbn dbn ] \ -privilege privilege [ -pretty_name pretty_name ] \ [ -pretty_plural pretty_plural ]
Defined in /var/www/openacs.org/packages/xotcl-core/tcl/05-db-procs.tcl
Automatically generated method
- Switches:
- -dbn (optional)
- -privilege (required)
- -pretty_name (optional)
- -pretty_plural (optional)
- Testcases:
- No testcase defined.
Source code: #function_args: {PRIVILEGE {}} {PRETTY_NAME null} {PRETTY_PLURAL null} foreach var [list PRIVILEGE PRETTY_NAME PRETTY_PLURAL] { set varname [string tolower $var] if {[info exists $varname]} { set $var [set $varname] set _$var :$var } else { set _$var null } } set sql " select acs_privilege__create_privilege($_PRIVILEGE, $_PRETTY_NAME, $_PRETTY_PLURAL) " 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