これを確認してください:
インライン:
res = stmt->executeQuery("INSERT INTO "+ table +"(Brand, Model, Power, `Last Used`,`# Times Used`) VALUES('Ferrari','Modena','500','Never',0)");
+(プラス)演算子がそのように機能せず、そのコードが文字列を連結せず、代わりにポインタを追加している、間違った文字列連結を行っています。
この方法を置き換えて、もう一度やり直してください:
#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)");