- Methods: All Methods Documented Methods Hide Methods
- Source: Display Source Hide Source
- Variables: Show Variables Hide Variables
Class ::xo::db::sql::acs_rel
::xo::db::sql::acs_rel create ...
Defined in
Class Relations
::xo::db::Class create ::xo::db::sql::acs_rel \ -superclass ::xotcl::ObjectMethods (to be applied on the object)
delete (scripted, public)
xo::db::sql::acs_rel delete [ -dbn dbn ] -rel_id rel_idAutomatically generated method
- Switches:
- -dbn (optional)
- -rel_id (required)
- Testcases:
- No testcase defined.
#function_args: {REL_ID {}} foreach var [list REL_ID] { set varname [string tolower $var] if {[info exists $varname]} { set $var [set $varname] set _$var :$var } else { set _$var null } } set sql " select acs_rel__delete($_REL_ID) " db_with_handle -dbn $dbn db { #ns_log notice "--sql=$sql" return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ] }new (scripted, public)
xo::db::sql::acs_rel new [ -dbn dbn ] [ -rel_id rel_id ] \ [ -rel_type rel_type ] -object_id_one object_id_one \ -object_id_two object_id_two [ -context_id context_id ] \ [ -creation_user creation_user ] [ -creation_ip creation_ip ] \ [ -childof childof ]Automatically generated method
- Switches:
- -dbn (optional)
- -rel_id (optional)
- -rel_type (optional, defaults to
"relationship"
)- -object_id_one (required)
- -object_id_two (required)
- -context_id (optional)
- -creation_user (optional)
- -creation_ip (optional)
- -childof (optional)
- Testcases:
- No testcase defined.
#function_args: {REL_ID null} {REL_TYPE relationship} {OBJECT_ID_ONE {}} {OBJECT_ID_TWO {}} {CONTEXT_ID null} {CREATION_USER null} {CREATION_IP null} foreach var [list REL_ID REL_TYPE OBJECT_ID_ONE OBJECT_ID_TWO 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 acs_rel__new($_REL_ID, $_REL_TYPE, $_OBJECT_ID_ONE, $_OBJECT_ID_TWO, $_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 ] }
- Methods: All Methods Documented Methods Hide Methods
- Source: Display Source Hide Source
- Variables: Show Variables Hide Variables