#include <database.h>
Public Member Functions | |
| int | Count () |
| bool | fetchColumn (cString *Column, cString *Value) |
| bool | fetchColumn (char **Column, char **Value) |
Friends | |
| class | cSQLiteDatabase |
This is a single row of a {SQL SELECT} request.
| int cRow::Count | ( | ) | [inline] |
Number of columns in this row
| bool cRow::fetchColumn | ( | char ** | Column, | |
| char ** | Value | |||
| ) |
Fetches a Column
This will fetch a column of this row and stores the name of the column in the first parameter and the value in the second parameter.
true, if more columns to comefalse, if the column is its last in this row. | Column | The name of the current column | |
| Value | The value of the current column |
| bool cRow::fetchColumn | ( | cString * | Column, | |
| cString * | Value | |||
| ) |
Fetches a Column
This will fetch a column of this row and stores the name of the column in the first parameter and the value in the second parameter.
true, if more columns to comefalse, if the column is its last in this row. | Column | The name of the current column | |
| Value | The value of the current value |
1.5.8