Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save darbyluv2code/be3b9fb545676034bbaa0547c3d58521 to your computer and use it in GitHub Desktop.
Save darbyluv2code/be3b9fb545676034bbaa0547c3d58521 to your computer and use it in GitHub Desktop.
String sql = "select * from employees";
ResultSet myRs = myStmt.executeQuery(sql);
while (myRs.next()) {
System.out.println(myRs.getTimestamp("checkout_time"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment