Hi i think you are doing mistake in your code
in this statement
String query = "select * from WIZUSUARIOS;";
in above you need to remove semicolon after select statement.
instead of above
you use this statement
String query = "select * from WIZUSUARIOS";
i removed one semicolon in select statement.
i hope then it will work out.
Thank You
Kishore Batchu