java日期dao,自各儿封装了一个BaseDao的插入的方法,但是添加日期类型老报错,求解!...

自己封装了一个BaseDao的插入的方法,但是添加日期类型老报错,求解!!!!

/**

* 更新的公共方法

* @param sql  拼接的sql语句

* @param paramValue  vo属性值的集合

* @throws SQLException

* @throws ClassNotFoundException

*/

public void updateVo(String sql,Object...paramValue) throws ClassNotFoundException, SQLException{

//获取连接

Connection con =DBUtil.getCon();

//预处理sql语句

PreparedStatement ps=con.prepareStatement(sql);

//填坑

if(paramValue!=null&&paramValue.length>0){

int count=0;

for(int i=0;i

ps.setObject(++count, paramValue[i]);

}

}

//执行

ps.executeUpdate();

//关闭

DBUtil.close(con, ps, null);

}

/**

* 添加记录

* @param objVo

* @throws NoSuchMethodException

* @throws SecurityException

* @throws InvocationTargetException

* @throws IllegalAccessException

* @throws IllegalArgumentException

* @throws SQLException

* @throws ClassNotFoundException

*/

public void addVo(Object objVo,String preKeyName) throws SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException, ClassNotFoundException, SQLException{

//建立存放属性值的List

List fieldList = new ArrayList();

//获取表名

Class c= objVo.getClass();

String tableName=GetName.getTabOrColumnName(c.getSimpleName());

//动态拼接sql语句

StringBuffer sql=new StringBuffer("insert into "+tableName+" values(");

Field[] fArray=c.getDeclaredFields();

for(int i=0;i

if(fArray[i].getName().equals(preKeyName)){

sql.append("seq_"+tableName+".nextval,");

}else{

sql.append("?,");

//将vo的属性值添加到List里

String getter =GetName.getter(fArray[i]);

Method m = c.getDeclaredMethod(getter);

fieldList.add(m.invoke(objVo));

}

}

sql.deleteCharAt(sql.length()-1);

sql.append(")");

//执行公共方法

updateVo( sql.toString(), fieldList.toArray());

}

public static void main(String[] args) throws ClassNotFoundException, SQLException, InstantiationException, IllegalAccessException, SecurityException, IllegalArgumentException, NoSuchFieldException, NoSuchMethodException, InvocationTargetException {

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值