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

 xo::db::sql::person[i] new [ -dbn dbn ] [ -person_id person_id ] \
    [ -object_type object_type ] [ -creation_date creation_date ] \
    [ -creation_user creation_user ] [ -creation_ip creation_ip ] \
    -email email  [ -url url ] -first_names first_names  \
    -last_name last_name  [ -context_id context_id ] \
    [ -childof childof ]

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

Automatically generated method

Switches:
-dbn
(optional)
-person_id
(optional)
-object_type
(defaults to "person") (optional)
-creation_date
(defaults to "now()") (optional)
-creation_user
(optional)
-creation_ip
(optional)
-email
(required)
-url
(optional)
-first_names
(required)
-last_name
(required)
-context_id
(optional)
-childof
(optional)

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

Testcases:
No testcase defined.
Source code:
#function_args: {PERSON_ID null} {OBJECT_TYPE person} {CREATION_DATE now()} {CREATION_USER null} {CREATION_IP null} {EMAIL {}} {URL null} {FIRST_NAMES {}} {LAST_NAME {}} {CONTEXT_ID null}
foreach var [list PERSON_ID OBJECT_TYPE CREATION_DATE CREATION_USER CREATION_IP EMAIL URL FIRST_NAMES LAST_NAME 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 person__new($_PERSON_ID$_OBJECT_TYPE$_CREATION_DATE$_CREATION_USER$_CREATION_IP$_EMAIL$_URL$_FIRST_NAMES$_LAST_NAME$_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: