Skip to content

Instantly share code, notes, and snippets.

@jseakle
Created April 21, 2016 20:33
Show Gist options
  • Save jseakle/d699bcd8e64f73cfa5f1cde5d5f59470 to your computer and use it in GitHub Desktop.
Save jseakle/d699bcd8e64f73cfa5f1cde5d5f59470 to your computer and use it in GitHub Desktop.
System.out.println(sessionFactory.getCurrentSession().doReturningWork(
new ReturningWork<String>() {
@Override
public String execute(Connection connection) throws SQLException {
DatabaseMetaData metaData = connection.getMetaData();
return metaData.getURL(); }
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment