|
|
File: /home/mitarbeiter/sven/public_html/tmp/devcon_php_base/dbi/dbresult.class.php
dev/con php base - Database interfaces
DB_result
DB_result
Datbase result object.
|
public class DB_result
Datbase result object.
This class represents results returned by DBWrapper::query ().
|
|
|
Private Method Summary |
void |
&DB_result(mixed &$res)Constructor for use of DBWrapper only. |
array |
&get()Fetch first/next row from result set. |
int |
num_rows()Get the number of rows affected by the insert operation. |
void |
free()Frees the result from memory. |
|
Private Field Summary |
unknown |
$res |
|
Private Method Details |
&DB_result |
private void &DB_result( mixed &$res )
|
|
Constructor for use of DBWrapper only.
Calling this constructor is allowed for database wrappers only.
|
Parameter |
|
mixed |
&$res |
|
|
Result set of internal type. |
|
Returns |
void |
|
&get |
private array &get( )
|
|
Fetch first/next row from result set.
|
Returns |
array Columns of the next row. The columns names are used
for the array's key names. |
|
num_rows |
private int num_rows( )
|
|
Get the number of rows affected by the insert operation.
|
Returns |
int Returns 0 if operation was not an insert. |
|
free |
private void free( )
|
|
Frees the result from memory.
|
Returns |
void |
|
|
Private Field Details |
$res |
private unknown $res
>> <<
|
|
|
|
|
PHPDoc 1.0beta |