GOFIGURE2
0.9.0
|
manages a map with keys matching fields of the gofiguredatabase Author table and values of the map matching a row of the Author table More...
#include <Code/IO/GoDBRow/GoDBAuthorRow.h>
Public Member Functions | |
int | DoesThisAuthorAlreadyExists (vtkMySQLDatabase *DatabaseConnector) |
check if the author already exists in the database, if yes, return the corresponding ID, if not, return -1 More... | |
GoDBAuthorRow () | |
int | SaveInDB (vtkMySQLDatabase *DatabaseConnector) |
~GoDBAuthorRow () | |
![]() | |
StringMapConstIterator | ConstMapBegin () |
StringMapConstIterator | ConstMapEnd () |
void | DeleteFromDB (vtkMySQLDatabase *iDatabaseConnector) |
delete from the database the row which has the same TableID More... | |
std::string | GetMapValue (const std::string &key) |
return the value for the field map[key] after having removed the " at the beginning and at the end of the value if it is a string in order to get the original value. More... | |
template<typename T > | |
T | GetMapValue (const std::string &key) |
std::string | GetTableIDName () |
std::string | GetTableName () |
std::vector< std::string > | GetVectorColumnNames () |
put all the keys of the map in a vector More... | |
GoDBRow () | |
StringMapIterator | MapBegin () |
StringMapIterator | MapEnd () |
std::string | PrintColumnNames () |
put all the keys of the map in a string separated by ',' More... | |
std::string | PrintColumnNamesWithValues () |
put all the keys and values of the map in a string as map[key] = value separated by ',' More... | |
std::vector< std::string > | PrintColumnsAndValues () |
std::string | PrintValues () |
put all the values of the map in a string separated by ',' More... | |
template<typename T > | |
void | SetField (const std::string &key, const T &value) |
convert the value into a string and assign it to the key in the map More... | |
void | SetField (const std::string &key, const std::string &value) |
set value as the value of map[key] after having put " at the beginning and at the end of the string, as value is a string and it will be needed for the database queries. map[key] = " "value" " More... | |
virtual bool | SetValuesForSpecificID (int ID, vtkMySQLDatabase *iDatabaseConnector) |
get the data from the database corresponding to the specific ID and put them in the map More... | |
virtual | ~GoDBRow () |
Protected Member Functions | |
virtual void | InitializeMap () |
virtual pure. initialize all the values of the map More... | |
![]() | |
void | AddConditions (const std::string &iNameOfField, std::vector< FieldWithValue > &ioFieldWithValue) |
add as an element of ioFieldWithValue the name and value of the map with the key iNameOfField More... | |
Additional Inherited Members | |
![]() | |
typedef StringMapType::const_iterator | StringMapConstIterator |
typedef StringMapType::iterator | StringMapIterator |
typedef std::map< std::string, std::string > | StringMapType |
![]() | |
StringMapType | m_MapRow |
std::string | m_TableIDName |
std::string | m_TableName |
manages a map with keys matching fields of the gofiguredatabase Author table and values of the map matching a row of the Author table
Definition at line 50 of file GoDBAuthorRow.h.
GoDBAuthorRow::GoDBAuthorRow | ( | ) |
Definition at line 37 of file GoDBAuthorRow.cxx.
|
inline |
Definition at line 55 of file GoDBAuthorRow.h.
int GoDBAuthorRow::DoesThisAuthorAlreadyExists | ( | vtkMySQLDatabase * | DatabaseConnector | ) |
check if the author already exists in the database, if yes, return the corresponding ID, if not, return -1
Definition at line 73 of file GoDBAuthorRow.cxx.
|
protectedvirtual |
virtual pure. initialize all the values of the map
Implements GoDBRow.
Definition at line 45 of file GoDBAuthorRow.cxx.
int GoDBAuthorRow::SaveInDB | ( | vtkMySQLDatabase * | DatabaseConnector | ) |
Definition at line 58 of file GoDBAuthorRow.cxx.