|
wxSQLite3
5.0.1
|
Represents a named string value collection. More...
#include <wxsqlite3.h>
Public Member Functions | |
| StringCollection () | |
| Default constructor. | |
| StringCollection (const StringCollection &collection) | |
| Copy constructor. | |
| StringCollection & | operator= (const StringCollection &collection) |
| Assignment constructor. | |
| virtual | ~StringCollection () |
| Destructor. | |
| void | Bind (const wxArrayString &stringCollection) |
| Bind a new array of integer values. | |
| Public Member Functions inherited from wxSQLite3::NamedCollection | |
| NamedCollection (const NamedCollection &collection) | |
| Copy constructor. | |
| NamedCollection & | operator= (const NamedCollection &collection) |
| Assignment constructor. | |
| virtual | ~NamedCollection () |
| Destructor. | |
| const wxString & | GetName () const |
| Get the name of the collection. | |
| bool | IsOk () const |
| Gets state of the collection. | |
| operator bool () const | |
| Gets state of the collection (same as IsOk() method). | |
Protected Member Functions | |
| StringCollection (const wxString &collectionName, void *collectionData) | |
| Constructor (internal use only). | |
| Protected Member Functions inherited from wxSQLite3::NamedCollection | |
| NamedCollection (const wxString &collectionName, void *collectionData) | |
| Constructor (internal use only). | |
| NamedCollection () | |
| Default constructor. | |
Friends | |
| class | Database |
Additional Inherited Members | |
| Protected Attributes inherited from wxSQLite3::NamedCollection | |
| wxString | m_name |
| Name of the collection. | |
| void * | m_data |
| Reference to the actual array of values representing the collection. | |
Represents a named string value collection.
|
inline |
Default constructor.
Creates completely empty collection instance that must be set by assignment, be careful
| wxSQLite3::StringCollection::StringCollection | ( | const StringCollection & | collection | ) |
Copy constructor.
|
virtual |
Destructor.
|
protected |
Constructor (internal use only).
| void wxSQLite3::StringCollection::Bind | ( | const wxArrayString & | stringCollection | ) |
Bind a new array of integer values.
Bind a new array of integer values to this named collection object.
| stringCollection | array of integer values to be bound |
| StringCollection & wxSQLite3::StringCollection::operator= | ( | const StringCollection & | collection | ) |
Assignment constructor.
|
friend |