Skip to content

Instantly share code, notes, and snippets.

@miere
Created December 25, 2014 21:25
Show Gist options
  • Select an option

  • Save miere/f8aef53a336ee3887daa to your computer and use it in GitHub Desktop.

Select an option

Save miere/f8aef53a336ee3887daa to your computer and use it in GitHub Desktop.
@Singleton
public class ConnectionProvider {
public Connection provideConnection() throws Exception {
Class.forName("org.sqlite.JDBC");
return DriverManager.getConnection("jdbc:sqlite:/tmp/nbwy.db");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment