xo::db::sql::acs_user proc new (public)
xo::db::sql::acs_user new [ -dbn dbn ] [ -user_id user_id ] \ [ -object_type object_type ] [ -creation_date creation_date ] \ [ -creation_user creation_user ] [ -creation_ip creation_ip ] \ [ -authority_id authority_id ] -username username -email email \ [ -url url ] -first_names first_names -last_name last_name \ -password password -salt salt [ -screen_name screen_name ] \ [ -email_verified_p email_verified_p ] [ -context_id context_id ] \ [ -childof childof ]
Defined in /var/www/openacs.org/packages/xotcl-core/tcl/05-db-procs.tcl
Automatically generated method
- Switches:
- -dbn (optional)
- -user_id (optional)
- -object_type (optional, defaults to
"user"
)- -creation_date (optional, defaults to
"now()"
)- -creation_user (optional)
- -creation_ip (optional)
- -authority_id (optional)
- -username (required)
- -email (required)
- -url (optional)
- -first_names (required)
- -last_name (required)
- -password (required)
- -salt (required)
- -screen_name (optional)
- -email_verified_p (optional, defaults to
"t"
)- -context_id (optional)
- -childof (optional)
- Testcases:
- No testcase defined.
Source code: #function_args: {USER_ID null} {OBJECT_TYPE user} {CREATION_DATE now()} {CREATION_USER null} {CREATION_IP null} {AUTHORITY_ID null} {USERNAME {}} {EMAIL {}} {URL null} {FIRST_NAMES {}} {LAST_NAME {}} {PASSWORD {}} {SALT {}} {SCREEN_NAME null} {EMAIL_VERIFIED_P t} {CONTEXT_ID null} foreach var [list USER_ID OBJECT_TYPE CREATION_DATE CREATION_USER CREATION_IP AUTHORITY_ID USERNAME EMAIL URL FIRST_NAMES LAST_NAME PASSWORD SALT SCREEN_NAME EMAIL_VERIFIED_P 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 acs_user__new($_USER_ID, $_OBJECT_TYPE, $_CREATION_DATE, $_CREATION_USER, $_CREATION_IP, $_AUTHORITY_ID, $_USERNAME, $_EMAIL, $_URL, $_FIRST_NAMES, $_LAST_NAME, $_PASSWORD, $_SALT, $_SCREEN_NAME, $_EMAIL_VERIFIED_P, $_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