当前位置: 技术问答>java相关
关于Timestamp在数据库里的检索问题???
来源: 互联网 发布时间:2015-06-15
本文导语: Timestamp ts1 = new Timestamp(long); sql语句: select * from whz_worktime where start_time="??????" 其中start_time为表格whz_worktime中的列名, 问大家: ??????内容该如何确定.最好能判断,不要太精确.比如从某某时间到某某时间. ...
Timestamp ts1 = new Timestamp(long);
sql语句:
select * from whz_worktime where start_time="??????"
其中start_time为表格whz_worktime中的列名,
问大家:
??????内容该如何确定.最好能判断,不要太精确.比如从某某时间到某某时间.
sql语句:
select * from whz_worktime where start_time="??????"
其中start_time为表格whz_worktime中的列名,
问大家:
??????内容该如何确定.最好能判断,不要太精确.比如从某某时间到某某时间.
|
这样来做:
String strSqlTemp = "select * from whz_worktime where start_time=?";
以strSqlTemp 为参数
用Connection 的public PreparedStatement prepareStatement(String sql)
throws SQLException方法
得到PreparedStatement,然后再用PreparedStatement的方法
public void setTimestamp(int parameterIndex,
Timestamp x)
throws SQLException
来设置条件。
String strSqlTemp = "select * from whz_worktime where start_time=?";
以strSqlTemp 为参数
用Connection 的public PreparedStatement prepareStatement(String sql)
throws SQLException方法
得到PreparedStatement,然后再用PreparedStatement的方法
public void setTimestamp(int parameterIndex,
Timestamp x)
throws SQLException
来设置条件。