xo::db::sql::file_storage proc copy_file (public)

 xo::db::sql::file_storage[i] copy_file [ -dbn dbn ] -file_id file_id  \
    -target_folder_id target_folder_id  -creation_user creation_user  \
    -creation_ip creation_ip  [ -name name ] [ -title title ]

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

Automatically generated method

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

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

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