xo::db::sql::content_extlink proc copy (public)

 xo::db::sql::content_extlink[i] copy [ -dbn dbn ] -extlink_id extlink_id  \
    -target_folder_id target_folder_id  -creation_user creation_user  \
    [ -creation_ip creation_ip ] -name name 

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

Automatically generated method

Switches:
-dbn
(optional)
-extlink_id
(required)
-target_folder_id
(required)
-creation_user
(required)
-creation_ip
(optional)
-name
(required)

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

Testcases:
No testcase defined.
Source code:
#function_args: {EXTLINK_ID {}} {TARGET_FOLDER_ID {}} {CREATION_USER {}} {CREATION_IP null} {NAME {}}
foreach var [list EXTLINK_ID TARGET_FOLDER_ID CREATION_USER CREATION_IP NAME]  {
  set varname [string tolower $var]
  if {[info exists $varname]} {
    set $var [set $varname]
    set _$var :$var
  } else {
    set _$var null
  }
}
set sql "
select content_extlink__copy($_EXTLINK_ID$_TARGET_FOLDER_ID$_CREATION_USER$_CREATION_IP$_NAME) 
    "
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: