存储:procedure
1.注意:datetime类型可以通过可视化工具 设置默认值:CURRENT_TIMESTAMP
不写默认值,可以用一下方法:
2.返回值的获取:
public static int count() throws SQLException{
Connection co=DBUtil.getConn();
CallableStatement cs=co.prepareCall("call get_count(?)");
cs.registerOutParameter(1, Types.INTEGER);//注册 存储的返回值
cs.execute();
return cs.getInt(1);
}