|
AnyDAC
|
Identifies the name of the stored procedure on the server to call.
Set StoredProcName to specify the name of the stored in database procedure to call. The full name of the stored procedure will be build from CatalogName, SchemaName, PackageName, Overload property values. Also a full name may be assigned to the StoredProcName (only for non-packaged procedures). If name is case sensitive or contains special characters, then it must be explicitly quoted.
If database does not have stored procedure with StoredProcName name, then when the application attempts to prepare the stored procedure, an exception will be raised.
property StoredProcName: string;
ADStoredProc1.StoredProcName := 'Northwind.dbo.[my proc]';
// the same as following
ADStoredProc1.CatalogName := 'Northwind';
ADStoredProc1.SchemaName := 'dbo';
ADStoredProc1.StoredProcName := '[my proc]';ADStoredProc1.PackageName := 'sys.dbms_sql'; ADStoredProc1.StoredProcName := 'execute';
|
What do you think about this topic? Send feedback!
|