Kiểm tra cái này:
trong dòng:
res = stmt->executeQuery("INSERT INTO "+ table +"(Brand, Model, Power, `Last Used`,`# Times Used`) VALUES('Ferrari','Modena','500','Never',0)");
Bạn đang thực hiện nối sai chuỗi, toán tử + (cộng) không hoạt động theo cách đó, mã đó không nối chuỗi, thay vào đó là thêm con trỏ.
Chỉ cần thay thế theo cách này và thử lại:
#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)");