%3 ::xotcl::Object ::xotcl::Object ::xo::db::sql::user_profile ::xo::db::sql::user_profile → delete → new ::xo::db::sql::user_profile->::xotcl::Object

Class ::xo::db::sql::user_profile

::xo::db::sql::user_profile[i] create ...

Class Relations

  • class: ::xo::db::Class[i]
  • superclass: ::xotcl::Object[i]
::xo::db::Class create ::xo::db::sql::user_profile \
     -superclass ::xotcl::Object

Methods (to be applied on the object)

  • delete (scripted, public)

     xo::db::sql::user_profile[i] delete [ -dbn dbn ] -profile_id profile_id 

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -profile_id
    (required)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::user_profile proc delete xo::db::sql::user_profile proc delete xo::db::sql::user_profile proc delete->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {PROFILE_ID {}}
    foreach var [list PROFILE_ID]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select user_profile__delete($_PROFILE_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::user_profile[i] new [ -dbn dbn ] -profile_id profile_id  \
        [ -rel_type rel_type ] -object_id_one object_id_one  \
        -object_id_two object_id_two  -member_state member_state  \
        -creation_user creation_user  -creation_ip creation_ip  \
        [ -childof childof ]

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -profile_id
    (required)
    -rel_type
    (defaults to "user_profile") (optional)
    -object_id_one
    (required)
    -object_id_two
    (required)
    -member_state
    (required)
    -creation_user
    (required)
    -creation_ip
    (required)
    -childof
    (optional)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::user_profile proc new xo::db::sql::user_profile proc new xo::db::sql::user_profile proc new->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {PROFILE_ID {}} {REL_TYPE user_profile} {OBJECT_ID_ONE {}} {OBJECT_ID_TWO {}} {MEMBER_STATE {}} {CREATION_USER {}} {CREATION_IP {}}
    foreach var [list PROFILE_ID REL_TYPE OBJECT_ID_ONE OBJECT_ID_TWO MEMBER_STATE 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 user_profile__new($_PROFILE_ID$_REL_TYPE$_OBJECT_ID_ONE$_OBJECT_ID_TWO$_MEMBER_STATE$_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 ]
    }