Mysql
 sql >> Database >  >> RDS >> Mysql

Errore C++ executeQuery() durante la visualizzazione dei dati MySQL dalla tabella

Controlla questo:

in linea:

res = stmt->executeQuery("INSERT INTO "+ table +"(Brand, Model, Power, `Last Used`,`# Times Used`) VALUES('Ferrari','Modena','500','Never',0)");

Stai facendo una concatenazione di stringhe sbagliata, quell'operatore + (più) non funziona in questo modo, quel codice non concatena le stringhe, invece sta aggiungendo puntatori.

Sostituisci semplicemente in questo modo e riprova:

#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)");