auth::local::search::Search (private)
auth::local::search::Search search_text [ parameters ]
Defined in packages/acs-authentication/tcl/local-procs.tcl
Implements the Search operation of the auth_search service contract for the local account implementation.
- Parameters:
- search_text (required)
- parameters (optional)
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.
Source code: set authority_id [auth::authority::local] return [db_list user_search { select distinct username from cc_users u where authority_id = :authority_id and upper(coalesce(u.first_names || ' ', '') || coalesce(u.last_name || ' ', '') || u.email || ' ' || u.username || ' ' || coalesce(u.screen_name, '')) like upper('%'||:search_text||'%') order by username }]XQL Not present: PostgreSQL, Oracle Generic XQL file: packages/acs-authentication/tcl/local-procs.xql