EPUB | CHM | PDF

TPSQLStoredProc.Properties.StoredProcName

Top Previous Next

Identifies the name of the stored procedure on the server for which this object is an encapsulation.

Syntax:

property StoredProcName: String;

Description:

Set StoredProcName to specify the name of the stored procedure to call on the server. If StoredProcName does not match the name of an existing stored procedure on the server, then when the application attempts to prepare the procedure prior to execution, an exception is raised.

All identifiers in PostgreSQL may be schema-qualified and case sensitive. To use schema-qualified model, use such construction schema_name.proc_name.
 
To use case sensitive model, names must be quoted, i.e. "pROc1" and "ProC1" are different procedures.
 
This models can be mixed, i.e. "schema"."proc_name".

See also: ExecProc