1
我想從MS Access中的數據庫中提取日期。我想比較這個日期,直到它的sysdate接近它。我寫了這樣的東西 -比較系統日期和重新安排的當前日期
while(true)
{
try
{
PreparedStatement p =c.prepareStatement("select Message,SendDate from mesaages12 where SendDate between sysdate - 0.25 and sysdate + 0.25");
r1 = p.executeQuery();
// another class object called
}
catch(Exception e)
{
e.printStackTrace();
}
}
但它似乎並沒有工作。另外我有問題,如果它是空的,它會引發異常。
任何人都有更好的選擇...請評論。
我的表的模式 -
Message GroupName SendDate
text text Date/Time
日期爲格式的12月14上午11時00分47秒
Thnks! ,現在()工作 – Prakhar
@uchiha不客氣。請記住[接受](http://meta.stackexchange.com/a/5235/238021)您發現有用的答案。 –