Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
String[] statements = ...
Connection conn = ...
for (int i = 0; i < statements.length; i++) {
// should use Callable or Prepared Statements if you can
Statement s = conn.createStatement();
ResultSet rs = s.executeQuery(statements[i]);
while (rs.next()) {
// do stuff with ResultSet
}
}