I am new to Arduino and I am currently working onwith an Arduino UNOUno and SD Card Modulecard module - SD/MMC for database storage using the Arduino database library from https://github.com/jwhiddon/EDB.
My question is the char str[] equivalent of VARCHAR?
Here My question is, is the char str[] type the equivalent of VARCHAR?
Here is my arbitrary record definition for my table:
struct LogEvent {
int logId;
int unumber;
char username[10];
char fname[15];
char lname[15];
char role[6];
char boxid[10];
char userStatus[2];
} logEvent;