heloo ...当我想在我的代码中使用日期时遇到问题我有一个名为 ReportService 的类,在这个类中我使用 jdbc 连接我的数据库,之后我想从我的数据库中获取一个特殊的报告date.frist 我写这个:
("select sum(cost) from mem_income where trunc(date_out) = to_date ('31-jul-2013' , 'dd-mm-yyyy')");
并且这项工作很好。但是在那之后我想从我的主要课程中传递我的日期:
PreparedStatement pst =
conn.prepareStatement("select sum(cost) from mem_income where trunc(date_in) = to_date (?)");
pst.setDate(1, +++++ );
ResultSet rs = pst.executeQuery();
我不知道我应该写什么而不是 +++++
谢谢