ORMLite是一个轻量级的Java对象关系映射持久层框架。支持包括MySQL、Postgres、MicrosoftSQLServer、H2、Derby、HSQLDB和Sqlite等在内的数据库。提供灵活的QueryBuilder来构建复杂的数据查询。强大的抽象DAO类,只需5行代码便能够自动生成SQL来创建和删除数据库表格。
示例代码:
publicclassAccountApp{
publicstaticvoidmain(String[]args)throwsException{
//thisusesh2bydefaultbutchangetomatchyourdatabase
StringdatabaseUrl="jdbc:h2:mem:account";
//createaconnectionsourcetoourdatabase
ConnectionSourceconnectionSource= newJdbcConnectionSource(databaseUrl);
//instantiatethedao
AccountDaoImplaccountDao=newAccountDaoImpl(connectionSource);
//ifyouneedtocreatethe'accounts'tablemakethiscall
TableUtils.createTable(connectionSource,Account.class);
评论