Hi,
I am new to mysql and have got a problem. I have managed to INSERT into the database and and check from it (a simple login system) but now after i login i want to copy all the data from that row and throw it into an arraylist.
I tried something like this to simply get a field from the db and put it in a local variable, but its returning the error : No ResultSet was produced.
ResultSet st = statement.executeQuery("select `clientname` into @name from clients where username='" + Login.username + "' and password = '" + Login.password + "'");