Class QDatabaseResultBase
Class to handle results sent by database upon querying
-
QBaseClass
-
QDatabaseResultBase
Methods summary
abstract public
mixed
|
#
FetchArray( )
Fetches one row as indexed (column=>value style) array from the result set
Fetches one row as indexed (column=>value style) array from the result set
Returns
mixed
|
abstract public
mixed
|
#
FetchRow( )
Fetches one row as enumerated (with numerical indexes) array from the result set
Fetches one row as enumerated (with numerical indexes) array from the result set
Returns
mixed
|
abstract public
|
|
abstract public
|
|
abstract public
|
|
abstract public
|
|
abstract public
|
|
abstract public
|
|
abstract public
|
|
public
mixed
|
#
__get( string $strName )
PHP magic method
Parameters
Returns
mixed
Throws
Overrides
|
public
mixed
|
#
__set( string $strName, string $mixValue )
Override method to perform a property "Set"
This will set the property $strName to be $mixValue
All inhereted objects that call __set() should always fall through
to calling parent::__set() in a try/catch statement catching
for CallerExceptions.
Override method to perform a property "Set"
This will set the property $strName to be $mixValue
All inhereted objects that call __set() should always fall through
to calling parent::__set() in a try/catch statement catching
for CallerExceptions.
Parameters
- $strName
- Name of the property to set
- $mixValue
- New value of the property
Returns
mixed the property that was set
Throws
Overrides
|