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

Class ::xo::db::sql::apm_application

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

Class Relations

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

Methods (to be applied on the object)

  • delete (scripted, public)

     xo::db::sql::apm_application[i] delete [ -dbn dbn ] \
        -application_id application_id 

    Automatically generated method

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

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

    Testcases:
    No testcase defined.
    #function_args: {APPLICATION_ID {}}
    foreach var [list APPLICATION_ID]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select apm_application__delete($_APPLICATION_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::apm_application[i] new [ -dbn dbn ] \
        [ -application_id application_id ] \
        [ -instance_name instance_name ] -package_key package_key  \
        [ -object_type object_type ] [ -creation_date creation_date ] \
        [ -creation_user creation_user ] [ -creation_ip creation_ip ] \
        [ -context_id context_id ] [ -childof childof ]

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -application_id
    (optional)
    -instance_name
    (optional)
    -package_key
    (required)
    -object_type
    (defaults to "apm_application") (optional)
    -creation_date
    (defaults to "now()") (optional)
    -creation_user
    (optional)
    -creation_ip
    (optional)
    -context_id
    (optional)
    -childof
    (optional)

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

    Testcases:
    No testcase defined.
    #function_args: {APPLICATION_ID null} {INSTANCE_NAME null} {PACKAGE_KEY {}} {OBJECT_TYPE apm_application} {CREATION_DATE now()} {CREATION_USER null} {CREATION_IP null} {CONTEXT_ID null}
    foreach var [list APPLICATION_ID INSTANCE_NAME PACKAGE_KEY OBJECT_TYPE 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 apm_application__new($_APPLICATION_ID$_INSTANCE_NAME$_PACKAGE_KEY$_OBJECT_TYPE$_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 ]
    }