Returns First record from query as an object
loadObjectList( key : string='' ) : array
Executes the current query and returns an array of record objects. Each object represents a
record. If key is specified (primary key fieldname) the returned array will be associative,
using the record primary key as array key.
Parameters [key] Primary key
Returns Array or associative array of record objects
Appendix
[ 449 ]
loadResult( ) : string
Executes the current query and gets the value in the first field of the first record.
Returns Value in the first field of the first record
loadResultArray( numinarray : int= 0 ) : array
Executes the current query and gets an array of the specified column/field number from
the resultant records.
Parameters [numinarray] Column/Field number
Returns Array of column from records
loadRow( ) : array
Executes the current query and returns the first record as an array.
Returns First record from query as an array
loadRowList( key : int='' ) : array
Executes the current query and returns a two-dimensional array of records.
Pages:
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620