Sprawdź to:
w kolejce:
res = stmt->executeQuery("INSERT INTO "+ table +"(Brand, Model, Power, `Last Used`,`# Times Used`) VALUES('Ferrari','Modena','500','Never',0)");
Robisz błędną konkatenację ciągów, operator + (plus) nie działa w ten sposób, kod nie łączy ciągów, zamiast tego dodaje wskaźniki.
Po prostu zastąp ten sposób i spróbuj ponownie:
#define TABLE "tbex"// put this in top of cpp file
......
res = stmt->executeQuery("INSERT INTO " TABLE "(Brand, Model, Power, `Last Used`
,`# Times Used`) VALUES('Ferrari','Modena','500','Never',0)");