Skip to content

Instantly share code, notes, and snippets.

@masztalski
Last active November 27, 2017 13:52
Show Gist options
  • Save masztalski/b815e79edbf9c4334a6c307a187b28cc to your computer and use it in GitHub Desktop.
Save masztalski/b815e79edbf9c4334a6c307a187b28cc to your computer and use it in GitHub Desktop.
public class UserSQLImpl extends BaseSQLImpl<User, Integer> implements UserRepository{
public UserSQLImpl(ConnectionSource connectionSource){
try {
mDao = DaoManager.createDao(connectionSource, User.class);
} catch (SQLException e) {
e.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment