For all the public object properties, this
finds a corresponding key or property in from, and binds them to the object.
Parameters from Bind subject, object or associative array
[ignore] Fields to ignore, string or array
Returns true on success
canDelete( oid : string=null, joins : array=null ) : boolean
Determines if there are any records linked to the buffered record or, if oid is specified,
the record identified by oid. joins identifies linked tables. joins is an optional
two-dimensional array; the inner arrays are associative, and must contain the keys name,
idfield, and joinfield. name is the linked table name, idfield is the linked table's
primary key, and joinfield is the foreign key in the linked table.
Parameters [oid] Record ID
[joins] Associative array of table join constraints
Returns true if there are no dependent records
check( ) : boolean
This method is used to validate the contents of the record buffer. This should be overridden
in subclasses.
Returns true on success
checkin( oid : string=null ) : boolean
Checks-in the buffered record or, if oid is specified, checks-in the record identified by
oid.
Pages:
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538