person::delete (public)

 person::delete -person_id person_id

Defined in packages/acs-tcl/tcl/community-core-procs.tcl

delete a person

Switches:
-person_id (required)

Testcases:
person_procs_test
Source code:
    db_exec_plsql delete_person {}
    person::flush_cache -person_id $person_id
Generic XQL file:
packages/acs-tcl/tcl/community-core-procs.xql

PostgreSQL XQL file:
<fullquery name="person::delete.delete_person">
    <querytext>

            select person__delete(:person_id);

      </querytext>
</fullquery>
packages/acs-tcl/tcl/community-core-procs-postgresql.xql

Oracle XQL file:
<fullquery name="person::delete.delete_person">
    <querytext>
	    begin
			person.del(
				person_id => :person_id
			);
		end;
      </querytext>
</fullquery>
packages/acs-tcl/tcl/community-core-procs-oracle.xql

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