com.pugwoo.dbhelper.impl.SpringJdbcDBHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimble-orm Show documentation
Show all versions of nimble-orm Show documentation
nimble-orm an ORM based on Spring jdbcTemplate.
package com.pugwoo.dbhelper.impl;
import com.pugwoo.dbhelper.impl.part.P6_ExecuteOp;
import org.springframework.jdbc.core.JdbcTemplate;
/**
* 2015年1月12日 16:41:03 数据库操作封装:增删改查
* @author pugwoo
*/
public class SpringJdbcDBHelper extends P6_ExecuteOp {
// 实现分别安排在impl.part包下几个文件中
public SpringJdbcDBHelper() {
}
public SpringJdbcDBHelper(JdbcTemplate jdbcTemplate) {
this.setJdbcTemplate(jdbcTemplate);
}
}