Patrick B. answered 07/16/19
Math and computer tutor/teacher
did you run the query from the rdbms command line ???? get that working first
if that works then you do in fact have the correct column name...
my next guess is that you have to escape the single quote character \'
String query = "select * from register_info where username = \'" + username + "\' and password = \'" +
password + \'";