Parameters table Table name
object Record object
[keyName] Primary key
Returns true on success
isQuoted( fieldname : string ) : boolean
Determines if fieldname is amongst the fieldnames to be encapsulated in quotes. If no
values have been specified to be quoted, returns true.
Parameters fieldname Fieldname to check
Returns true if the fieldname should be encapsulated in quotes
loadAssoc( ) : array
Executes the current query and gets the first record as an associative array.
Returns First record from query as an associative array
loadAssocList( key : string='' ) : array
Executes the current query and gets a two-dimensional array of records. Each inner array
represents a record as an associative array. 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 Two-dimensional array of records
loadObject( ) : object
Executes the current query and returns the first record as an object (stdClass).
Pages:
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619