#include <vtkMySQLQuery.h>
This is an implementation of vtkSQLQuery for MySQL databases. See the documentation for vtkSQLQuery for information about what the methods do.
Definition at line 38 of file vtkMySQLQuery.h.
Public Types | |
typedef vtkSQLQuery | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
bool | Execute () |
int | GetNumberOfFields () |
const char * | GetFieldName (int i) |
int | GetFieldType (int i) |
bool | NextRow () |
bool | HasError () |
const char * | GetLastErrorText () |
vtkVariant | DataValue (vtkIdType c) |
virtual vtkStdString | EscapeString (vtkStdString src, bool addSurroundingQuotes=true) |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkMySQLQuery * | SafeDownCast (vtkObject *o) |
static vtkMySQLQuery * | New () |
Protected Member Functions | |
vtkMySQLQuery () | |
~vtkMySQLQuery () | |
virtual void | SetLastErrorText (const char *) |
Friends | |
class | vtkMySQLDatabase |
typedef vtkSQLQuery vtkMySQLQuery::Superclass |
vtkMySQLQuery::vtkMySQLQuery | ( | ) | [protected] |
vtkMySQLQuery::~vtkMySQLQuery | ( | ) | [protected] |
virtual const char* vtkMySQLQuery::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkSQLQuery.
static int vtkMySQLQuery::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkSQLQuery.
virtual int vtkMySQLQuery::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkSQLQuery.
static vtkMySQLQuery* vtkMySQLQuery::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkSQLQuery.
void vtkMySQLQuery::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkSQLQuery.
static vtkMySQLQuery* vtkMySQLQuery::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject.
bool vtkMySQLQuery::Execute | ( | ) | [virtual] |
Execute the query. This must be performed before any field name or data access functions are used.
Implements vtkSQLQuery.
int vtkMySQLQuery::GetNumberOfFields | ( | ) | [virtual] |
The number of fields in the query result.
Implements vtkRowQuery.
const char* vtkMySQLQuery::GetFieldName | ( | int | i | ) | [virtual] |
Return the name of the specified query field.
Implements vtkRowQuery.
int vtkMySQLQuery::GetFieldType | ( | int | i | ) | [virtual] |
Return the type of the field, using the constants defined in vtkType.h.
Implements vtkRowQuery.
bool vtkMySQLQuery::NextRow | ( | ) | [virtual] |
Advance row, return false if past end.
Implements vtkRowQuery.
bool vtkMySQLQuery::HasError | ( | ) | [virtual] |
Return true if there is an error on the current query.
Implements vtkRowQuery.
vtkVariant vtkMySQLQuery::DataValue | ( | vtkIdType | c | ) | [virtual] |
Return data in current row, field c
Implements vtkRowQuery.
const char* vtkMySQLQuery::GetLastErrorText | ( | ) | [virtual] |
Get the last error text from the query
Implements vtkRowQuery.
virtual vtkStdString vtkMySQLQuery::EscapeString | ( | vtkStdString | src, | |
bool | addSurroundingQuotes = true | |||
) | [virtual] |
Escape a string for use in a query
Reimplemented from vtkSQLQuery.
virtual void vtkMySQLQuery::SetLastErrorText | ( | const char * | ) | [protected, virtual] |
friend class vtkMySQLDatabase [friend] |
Definition at line 41 of file vtkMySQLQuery.h.