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

Class ::xo::db::sql::notification_reply

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

Class Relations

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

Methods (to be applied on the object)

  • delete (scripted, public)

     xo::db::sql::notification_reply[i] delete [ -dbn dbn ] \
        -reply_id reply_id 

    Automatically generated method

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

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

    Testcases:
    No testcase defined.
    #function_args: {REPLY_ID {}}
    foreach var [list REPLY_ID]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select notification_reply__delete($_REPLY_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::notification_reply[i] new [ -dbn dbn ] -reply_id reply_id  \
        -object_id object_id  -type_id type_id  -from_user from_user  \
        -subject subject  -content content  -reply_date reply_date  \
        -creation_date creation_date  -creation_user creation_user  \
        -creation_ip creation_ip  -context_id context_id  \
        [ -childof childof ]

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -reply_id
    (required)
    -object_id
    (required)
    -type_id
    (required)
    -from_user
    (required)
    -subject
    (required)
    -content
    (required)
    -reply_date
    (required)
    -creation_date
    (required)
    -creation_user
    (required)
    -creation_ip
    (required)
    -context_id
    (required)
    -childof
    (optional)

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

    Testcases:
    No testcase defined.
    #function_args: {REPLY_ID {}} {OBJECT_ID {}} {TYPE_ID {}} {FROM_USER {}} {SUBJECT {}} {CONTENT {}} {REPLY_DATE {}} {CREATION_DATE {}} {CREATION_USER {}} {CREATION_IP {}} {CONTEXT_ID {}}
    foreach var [list REPLY_ID OBJECT_ID TYPE_ID FROM_USER SUBJECT CONTENT REPLY_DATE CREATION_DATE CREATION_USER CREATION_IP CONTEXT_ID]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select notification_reply__new($_REPLY_ID$_OBJECT_ID$_TYPE_ID$_FROM_USER$_SUBJECT$_CONTENT$_REPLY_DATE$_CREATION_DATE$_CREATION_USER$_CREATION_IP$_CONTEXT_ID) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }