xo::db::sql::forums_reading_info proc move_thread_update (public)

 xo::db::sql::forums_reading_info[i] move_thread_update [ -dbn dbn ] \
    -source_message_id source_message_id  \
    -target_message_id target_message_id 

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

Automatically generated method

Switches:
-dbn
(optional)
-source_message_id
(required)
-target_message_id
(required)

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

Testcases:
No testcase defined.
Source code:
#function_args: {SOURCE_MESSAGE_ID {}} {TARGET_MESSAGE_ID {}}
foreach var [list SOURCE_MESSAGE_ID TARGET_MESSAGE_ID]  {
  set varname [string tolower $var]
  if {[info exists $varname]} {
    set $var [set $varname]
    set _$var :$var
  } else {
    set _$var null
  }
}
set sql "
select forums_reading_info__move_thread_update($_SOURCE_MESSAGE_ID$_TARGET_MESSAGE_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: