0
By the code being displayed in the error message, you are trying to make an insertion in the table table
.
But you are creating a table with another name.
The code snippet of the Insert is not in the question, seeing by the error message displayed the correct command would be:
INSERT INTO tabela (id, nome) VALUES (?,?)
Better detail your problem by informing the code snippet (text not image) where the error occurs. Prefer to inform the error text instead of the image.
– rubStackOverflow