Class ::xo::db::sql::apm_application (public)

 ::xo::db::Class ::xo::db::sql::apm_application[i]

Defined in

Testcases:
No testcase defined.
Source code:
namespace eval ::xo::db::sql {}
::nsf::object::alloc ::xo::db::Class ::xo::db::sql::apm_application {set :__default_metaclass ::xotcl::Class
   set :__default_superclass ::xotcl::Object
   set :abstract_p f
   set :auto_save false
   set :name_method {}
   set :object_type ::xo::db::sql::apm_application
   set :security_inherit_p t
   set :sql_package_name apm_application
   set :supertype acs_object
   set :with_table true}
::xo::db::sql::apm_application proc new {{-dbn {}} -application_id -instance_name -package_key:required {-object_type apm_application} {-creation_date now()} -creation_user -creation_ip -context_id -childof} {
      #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 ]
      }
    }
::xo::db::sql::apm_application proc delete {{-dbn {}} -application_id:required} {
      #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 ]
      }
    }
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: