xo::db::sql::composition_rel proc new (public)
xo::db::sql::composition_rel new [ -dbn dbn ] [ -rel_id rel_id ] \ [ -rel_type rel_type ] -object_id_one object_id_one \ -object_id_two object_id_two [ -creation_user creation_user ] \ [ -creation_ip creation_ip ] [ -childof childof ]
Defined in /var/www/openacs.org/packages/xotcl-core/tcl/05-db-procs.tcl
Automatically generated method
- Switches:
- -dbn (optional)
- -rel_id (optional)
- -rel_type (optional, defaults to
"composition_rel"
)- -object_id_one (required)
- -object_id_two (required)
- -creation_user (optional)
- -creation_ip (optional)
- -childof (optional)
- Testcases:
- No testcase defined.
Source code: #function_args: {REL_ID null} {REL_TYPE composition_rel} {OBJECT_ID_ONE {}} {OBJECT_ID_TWO {}} {CREATION_USER null} {CREATION_IP null} foreach var [list REL_ID REL_TYPE OBJECT_ID_ONE OBJECT_ID_TWO 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 composition_rel__new($_REL_ID, $_REL_TYPE, $_OBJECT_ID_ONE, $_OBJECT_ID_TWO, $_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