util_email_unique_p (public)

 util_email_unique_p email

Defined in packages/acs-tcl/tcl/utilities-procs.tcl

Returns 1 if the email passed in does not yet exist in the system.

Parameters:
email
Author:
yon <yon@openforce.net>

Partial Call Graph (max 5 caller/called nodes):
%3 Class ::xo::Authorize Class ::xo::Authorize (public) util_email_unique_p util_email_unique_p Class ::xo::Authorize->util_email_unique_p xo::Authorize instproc register_new_user xo::Authorize instproc register_new_user (protected) xo::Authorize instproc register_new_user->util_email_unique_p db_string db_string (public) util_email_unique_p->db_string

Testcases:
No testcase defined.
Source code:
    return [db_string email_unique_p {}]
XQL Not present:
PostgreSQL, Oracle
Generic XQL file:
<fullquery name="util_email_unique_p.email_unique_p">
    <querytext>
    select count(*)
    from dual
    where not exists (select 1
                      from parties
                      where email = lower(:email))
  </querytext>
</fullquery>
packages/acs-tcl/tcl/utilities-procs.xql

[ hide source ] | [ make this the default ]
Show another procedure: