Specifies one or more fields in a master table to link with corresponding fields in this table in order to establish a master-detail relationship between the tables.
Specifies the name of the data source for a dataset to use as a master table in establishing a detail-master relationship between this table and another one.
This method uses PHP reflection to iterate through published properties (the ones starting with get) and retrieve the properties stored by a previous serialize() call.
[line 1780]
OracleStoredProc encapsulates a stored procedure in an application.
Use a OracleStoredProc object in applications to use a stored procedure on a Oracle database server. A stored procedure is a grouped set of statements, stored as part of a database servers metadata (just like tables, indexes, and domains), that performs a frequently repeated, database-related task on the server and passes results to the client.
Note: Not all Oracle versions support stored procedures. See a specific servers documentation to determine if it supports stored procedures.
Many stored procedures require a series of input arguments, or parameters, that are used during processing. OracleStoredProc provides a Params property that enables an application to set these parameters before executing the stored procedure.