![]() |
wxSQLite3 4.10.12
|
Represents a named string value collection. More...
#include <wxsqlite3.h>
Public Member Functions | |
| wxSQLite3StringCollection () | |
| Default constructor. | |
| wxSQLite3StringCollection (const wxSQLite3StringCollection &collection) | |
| Copy constructor. | |
| wxSQLite3StringCollection & | operator= (const wxSQLite3StringCollection &collection) |
| Assignment constructor. | |
| virtual | ~wxSQLite3StringCollection () |
| Destructor. | |
| void | Bind (const wxArrayString &stringCollection) |
| Bind a new array of integer values. | |
Public Member Functions inherited from wxSQLite3NamedCollection | |
| wxSQLite3NamedCollection (const wxSQLite3NamedCollection &collection) | |
| Copy constructor. | |
| wxSQLite3NamedCollection & | operator= (const wxSQLite3NamedCollection &collection) |
| Assignment constructor. | |
| virtual | ~wxSQLite3NamedCollection () |
| 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 | |
| wxSQLite3StringCollection (const wxString &collectionName, void *collectionData) | |
| Constructor (internal use only) | |
Protected Member Functions inherited from wxSQLite3NamedCollection | |
| wxSQLite3NamedCollection (const wxString &collectionName, void *collectionData) | |
| Constructor (internal use only) | |
| wxSQLite3NamedCollection () | |
| Default constructor. | |
Friends | |
| class | wxSQLite3Database |
Additional Inherited Members | |
Protected Attributes inherited from wxSQLite3NamedCollection | |
| 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
| wxSQLite3StringCollection::wxSQLite3StringCollection | ( | const wxSQLite3StringCollection & | collection | ) |
Copy constructor.
|
virtual |
Destructor.
|
protected |
Constructor (internal use only)
| void wxSQLite3StringCollection::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 |
| wxSQLite3StringCollection & wxSQLite3StringCollection::operator= | ( | const wxSQLite3StringCollection & | collection | ) |
Assignment constructor.
|
friend |