Code I'm using
PreparedStatement i = conexao.prepareStatement("INSERT INTO teste VALUES (player='teste', level_1=0, level_2=0, level_3=0, level_4=0, level_5=0, level_6=0, level_7=0, level_8=0, level_9=0, level_10=0)");
i.executeUpdate();
Table structure.
Just this happens with Insert into
, I already used this same code to create the table and it did not give a problem, it just does not insert, what's the problem?
No error, nothing, just does not insert.