TableData
TableData is the main class used to manipulate a tabale data. You need an object of this class to access a table's data.
You need firstly an object of MemoryManager
type
MemoryManager mem;
then you can use either TO
or FROM
methods.
#
INSERTWith this methods you can add a new data at the end of a table. Library auto calculates the next position.
#
Numerics datatemplate <typename T>TableData& INSERT(char* c_name, const T* data)
c_name
: the column name where you want to store the new datadata
: a pointer to a numeric data which contains the value to store
int new_age = 25;float new_rate = 8.3;
mem.TO("EM") .INSERT("ag", &new_age) .INSERT("rt", &new_rate) .DONE();
In this example, we insert two data new_age and new_rate on the ag and rt of the EM table.
caution
- data type to store must match column data type set when creating the table
- if the column doesn't exist (wrong name after took the first 02 chars) no data at this line will not be stored
- Don't forget to call
DONE
at the end othwersie the INSERT operation will override the last date in the table and will not update the number of data in the table
#
Array of charIf it is an array of char use the specialized version of INSERT
function.
TableData& INSERT(char* c_name, char* data)
c_name
: the column name where you want to store the new datadata
: the char sequence
char hello[] = "Bonsoir";
mem.TO("EM") .INSERT("nm", hello) .DONE();
#
UPDATEYou can override a data at a position/index. It is like an INSERT operation but you can precise the index you want of data you want to override.
#
Numerics datatemplate <typename T>TableData& UPDATE(char* c_name, const T* data, int nth)
c_name
: the column name where you want to update the new datadata
: a pointer to a numeric data which contains the value to storenth
: the index/position where you want to override the data.
int new_age = 25;float new_rate = 8.3;
mem.TO("EM") .UPDATE("ag", &new_age, 2) .UPDATE("rt", &new_rate, 2) .DONE();
We override data at position 2 (third data) of the table.
#
Array of charIf it is an array of char use the specialized version of UPDATE
function.
TableData& UPDATE(char* c_name, char* data, int nth)
c_name
: the column name where you want to update the new datadata
: char arraynth
: the index/position where you want to override the data.
char hello[] = "Bonsoir";
mem.TO("EM") .UPDATE("nm", hello, 2) .DONE();
#
SELECTWith this function you can retrieve dat from a table if you konw its name
#
Numerics datatemplate <typename T>TableData& SELECT(char* c_name, T* data, int nth = 0)
c_name
: the column name where you want to read the table datadata
: a pointer to the variable that will hold the data readnth
: the index/position where you want to read the data.
return
an object reference of TableData type that can be used after to do more actions.
int age = 0;mem.FROM("EM") .SELECT("ag", &age) .DONE();
Serial.print("value read");Serial.println(age);
#
Array of charUse in this case the second version of SELECT function
TableData& SELECT(char* c_name, char* data, int nth = 0)
c_name
: the column name where you want to read the table datadata
: char array that will hold the data readnth
: the index/position where you want to read the data.
return
an object reference of TableData type that can be used after to do more actions.
char name[10];
mem.FROM("EM") .SELECT("nm", name, 0) .DONE();
Serial.println(name);
#
SELECT_ALLYou can select all data directly
#
Numerics datatemplate <typename T>TableData& SELECT_ALL(char* c_name, T* data, int& nbData)
c_name
: the column name where you want to read the table datadata
: array that will hold the data readnbData
: an reference to hold the amount of data read
int all_age[5];float all_rate[5];int amount = 0;
mem.FROM("EM") .SELECT_ALL("ag", all_age, amount) .SELECT_ALL("rt", all_rate, amount) .DONE();
for (size_t i = 0; i<amount; i++) { Serial.println(all_age[i]); Serial.println(all_rate[i]);}
#
Array of charWe don't provide yet an implementation of SELECT_ALL
for char sequence. But
you can write your own wrapper.
#
WHEREOnly for numerics data.
You can filter that on what you want to work (get or write) and work so only on data which match some conditions.
template <typename T>TableData& WHERE(char* c_name, FILTER f, T* data)
c_name
: the column name where you want to read the table dataf
: A filter enumeration. Read filter doc to know them.data
: data that will be used as comparator
int max_age = 25;int all_age[5];int nb = 0;
mem.FROM("EM") .WHERE("ag", FILTER::isLessThan, &max_age) .SELECT_ALL("ag", all_age, nb) .DONE();
for (size_t i = 0; i<nb; i++) { Serial.println(all_age[i]);}
// or somthing like thisint min_val = 31;float em_rate = 7;
mem.FROM("EM") .WHERE("ag", FILTER::isGreaterThan, &min_val) .WHERE("rt", FILTER::isNotEqualTo, &em_rate) .DELETE(0) .DONE();
Yes I love this methods and I love chainning functions
info
You can apply after using WHERE the following methods:
- SELECT
- SELECT_ALL
- UPDATE
- DELETE
- DELETE_ALL
- WHERE
#
DELETEYou can also delete a data at any position in a table. Remember that trying to delete
at a position means delete all data at this position for each columns of the table.
If you use a filter fonction (WHERE
), delete at index means delete the data which
match WHERE
filter at this index
TableData& DELETE(int nth = 0)
nth
: the psoition (index) of data
mem.TO("EM") .DELETE(2) .DONE();
#
DELETE_ALLYou can also delete all data at any position in a table. If you use a filter
fonction (WHERE
), delete all means delete all data which
match WHERE
filter
TableData& DELETE_ALL(int& nbData)
nbData
: a reference to hold the amount of data deleted
int nb = 0;mem.TO("EM") .DELETE_ALL(nb) .DONE();
Serial.print("Amount data deleted: "); Serial.println(nb);
#
DONEThis method must be called at the end of operations to be sure to keep consistent a table data.
void DONE()
info
Let's say: TO and FROM functions open a connection to a table of the data base and DONE function close this connection.