xo::db::sql::content_keyword proc item_assign (public)
xo::db::sql::content_keyword item_assign [ -dbn dbn ] \ -item_id item_id -keyword_id keyword_id \ [ -context_id context_id ] [ -creation_user creation_user ] \ [ -creation_ip creation_ip ]
Defined in /var/www/openacs.org/packages/xotcl-core/tcl/05-db-procs.tcl
Automatically generated method
- Switches:
- -dbn (optional)
- -item_id (required)
- -keyword_id (required)
- -context_id (optional)
- -creation_user (optional)
- -creation_ip (optional)
- Testcases:
- No testcase defined.
Source code: #function_args: {ITEM_ID {}} {KEYWORD_ID {}} {CONTEXT_ID null} {CREATION_USER null} {CREATION_IP null} foreach var [list ITEM_ID KEYWORD_ID CONTEXT_ID CREATION_USER CREATION_IP] { set varname [string tolower $var] if {[info exists $varname]} { set $var [set $varname] set _$var :$var } else { set _$var null } } set sql " select content_keyword__item_assign($_ITEM_ID, $_KEYWORD_ID, $_CONTEXT_ID, $_CREATION_USER, $_CREATION_IP) " 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