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 1295]
MySQLStoredProc encapsulates a stored procedure in an application.
Use a MySQLStoredProc object in applications to use a stored procedure on a MySQL database server. A stored procedure is a grouped set of statements, stored as part of a database server’s 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 MySQL versions support stored procedures. See a specific server’s documentation to determine if it supports stored procedures.
Many stored procedures require a series of input arguments, or parameters, that are used during processing. MySQLStoredProc provides a Params property that enables an application to set these parameters before executing the stored procedure.
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.