xo::db::sql::notification_delivery_method proc new (public)

 xo::db::sql::notification_delivery_method[i] new [ -dbn dbn ] \
    -delivery_method_id delivery_method_id  -sc_impl_id sc_impl_id  \
    -short_name short_name  -pretty_name pretty_name  \
    -creation_date creation_date  -creation_user creation_user  \
    -creation_ip creation_ip  -context_id context_id  \
    [ -childof childof ]

Defined in packages/xotcl-core/tcl/05-db-procs.tcl

Automatically generated method

Switches:
-dbn
(optional)
-delivery_method_id
(required)
-sc_impl_id
(required)
-short_name
(required)
-pretty_name
(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_delivery_method proc new xo::db::sql::notification_delivery_method proc new xo::db::sql::notification_delivery_method proc new->db_with_handle

Testcases:
No testcase defined.
Source code:
#function_args: {DELIVERY_METHOD_ID {}} {SC_IMPL_ID {}} {SHORT_NAME {}} {PRETTY_NAME {}} {CREATION_DATE {}} {CREATION_USER {}} {CREATION_IP {}} {CONTEXT_ID {}}
foreach var [list DELIVERY_METHOD_ID SC_IMPL_ID SHORT_NAME PRETTY_NAME 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_delivery_method__new($_DELIVERY_METHOD_ID$_SC_IMPL_ID$_SHORT_NAME$_PRETTY_NAME$_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 ]
}
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: