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

Class ::xo::db::sql::weblogger_channel

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

Class Relations

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

Methods (to be applied on the object)

  • delete (scripted, public)

     xo::db::sql::weblogger_channel[i] delete [ -dbn dbn ] \
        -channel_id channel_id 

    Automatically generated method

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

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

    Testcases:
    No testcase defined.
    #function_args: {CHANNEL_ID {}}
    foreach var [list CHANNEL_ID]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select weblogger_channel__delete($_CHANNEL_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::weblogger_channel[i] new [ -dbn dbn ] \
        -channel_id channel_id  -package_id package_id  -user_id user_id  \
        -creation_user creation_user  -creation_ip creation_ip  \
        [ -childof childof ]

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -channel_id
    (required)
    -package_id
    (required)
    -user_id
    (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::weblogger_channel proc new xo::db::sql::weblogger_channel proc new xo::db::sql::weblogger_channel proc new->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {CHANNEL_ID {}} {PACKAGE_ID {}} {USER_ID {}} {CREATION_USER {}} {CREATION_IP {}}
    foreach var [list CHANNEL_ID PACKAGE_ID USER_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 weblogger_channel__new($_CHANNEL_ID$_PACKAGE_ID$_USER_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 ]
    }