$connID
$connID : resource|object
Connection ID
Class BaseResult
getResult(string $type = 'object') : array
Retrieve the results of the query. Typically an array of individual data rows, which can be either an 'array', an 'object', or a custom class name.
string | $type | The row type. Either 'array', 'object', or a class name to use |
getRow(mixed $n, string $type = 'object') : mixed
Wrapper object to return a row as either an array, an object, or a custom class.
If row doesn't exist, returns null.
mixed | $n | The index of the results to return |
string | $type | The type of result object. 'array', 'object' or class name. |