80 bool hasField(
const QString &name)
const;
84 QString
getType(
int index)
const;
85 QString
getType(
const QString &name)
const;
87 bool isNull(
const QString &name)
const;
89 QString
getValue(
const QString &name)
const;
92 QString QtTypeField(
const char *ctype)
const;
Provide simplified access to resulting SQL query row.
Definition: SqlRecord.h:62
QString getType(int index) const
Returns the type of a field/column at the specified index.
Definition: SqlRecord.cpp:143
bool isNull(const QString &name) const
Determines if the value of the field/column is NULL.
Definition: SqlRecord.cpp:155
bool hasField(const QString &name) const
Indicates the existance/non-existance of a field in the row.
Definition: SqlRecord.cpp:67
QString getFieldName(int index) const
Returns the name of a field/column at a particular index.
Definition: SqlRecord.cpp:81
SqlRecord()
Default Constructor.
Definition: SqlRecord.cpp:43
Construct and execute a query on a database and manage result.
Definition: SqlQuery.h:152
int size() const
Returns the number of fields/columns in query.
Definition: SqlRecord.h:76
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
QString getValue(int index) const
Returns the value of the field/column at specified index.
Definition: SqlRecord.cpp:169
virtual ~SqlRecord()
Definition: SqlRecord.h:66
int getFieldIndex(const QString &name) const
Return the index of a named field/column This method will determine the index of the named field afte...
Definition: SqlRecord.cpp:94