Zkontrolujte toto:
v řadě:
res = stmt->executeQuery("INSERT INTO "+ table +"(Brand, Model, Power, `Last Used`,`# Times Used`) VALUES('Ferrari','Modena','500','Never',0)");
Děláte špatné zřetězení řetězců, operátor + (plus) takto nefunguje, kód nezřetězuje řetězce, místo toho přidává ukazatele.
Jednoduše nahraďte tímto způsobem a zkuste to znovu:
#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)");