xo::db::sql::workflow_case proc begin_task_action (public)

 xo::db::sql::workflow_case[i] begin_task_action [ -dbn dbn ] \
    -task_id task_id  -action action  -action_ip action_ip  \
    -user_id user_id  [ -msg msg ]

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

Automatically generated method

Switches:
-dbn
(optional)
-task_id
(required)
-action
(required)
-action_ip
(required)
-user_id
(required)
-msg
(optional)

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

Testcases:
No testcase defined.
Source code:
#function_args: {TASK_ID {}} {ACTION {}} {ACTION_IP {}} {USER_ID {}} {MSG null}
foreach var [list TASK_ID ACTION ACTION_IP USER_ID MSG]  {
  set varname [string tolower $var]
  if {[info exists $varname]} {
    set $var [set $varname]
    set _$var :$var
  } else {
    set _$var null
  }
}
set sql "
select workflow_case__begin_task_action($_TASK_ID$_ACTION$_ACTION_IP$_USER_ID$_MSG) 
    "
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: