我用ACCESS2003做开发,我查询时间的时候,无缘无故多了个零,本来是2010-5-10 10:23:25 的,缺变成了2010-5-10 10:23:25.0 ,不知道为什么,我打开数据库看却是正常的,但是查出来就不正常了,百度了也没发现别人有这个问题,怎么就我有呢????我插入时间的时候用的是##,查询语句就是SELECT * ,难道哪错了????         insql = "insert into ProductWei(ExpressNoIn,CompanyName,UserTelephone,ProductName,ProductRe,Ptype,DeleteFlag,InStoreTime) values('"
                      +model.getValueAt(0,1)+"','"+model.getValueAt(0,3)+"','"+model.getValueAt(0,4)+"','"+
                      model.getValueAt(0,5)+"','"+model.getValueAt(0,6)+"','"+model.getValueAt(0,7)+"','1',#"+
                      model.getValueAt(0,8)+"#)";