Hi,
I have a form with a text field that I write a ID number.
But however it only returns the first row i my table.
This is my code:
This code works when i query directly in the server.Code:int id = Integer.parseInt(textID.getText());
String query = "SELECT * FROM PersonTable WHERE ID = id";
What could be wrong in my code?

