我有一个机场项目。我有一个gui,我想搜索某些航班。在这个gui我有一个JDateChooser(因为我想在我的数据库中找到某个航班)。在数据库中,我有一个名为date_dep的列,它是一种数据类型。我应该提一下,以前我必须创建航班(输入关于从gui到数据库的航班的信息),当我从JDateChooser进入数据库时,我没有遇到问题。现在的问题是,当我尝试搜索某个航班时,我收到了这个错误:
org.postgresql.util.PSQLException:错误:语法错误在或附近" 4月"
我认为" 4月"从四月开始,我正在寻找四月二十四日的航班。所以我想我的问题是格式的问题,但我尝试了很多东西没有任何运气。 你知道它可能是什么吗?提前致谢。如果它有帮助,我可以发布更多代码。
dateCh是我的Jdatechooser的名称。
尝试{
con = DriverManager.getConnection(url, user, password);
pst = con.prepareStatement("SELECT * FROM flight WHERE route_id="+routeid+ "AND date_dep="+dateCh.getDate());
rs = pst.executeQuery();
// erase everything from the list before refreshing it
flightlist.clear();
while (rs.next()) {
flightlist.addElement(rs.getInt(1) + " : Flight ID" + " | "
+ "Route ID: " + rs.getInt(2) + " | "+"Date: "+ rs.getDate(4)+ " | "+"Time: "+rs.getTime(5)+ " | "
+ "Plane ID "+rs.getInt(3)+ " | "+"Economy seats: "+rs.getInt(6)+" | "+"Business seats: "+rs.getInt(7)+" | "
+ "First class seats: "+rs.getInt(8)+"\n");
}
} catch (SQLException e) {
System.out.println("Connection failed!");
e.printStackTrace();
return;
}
修复我的代码后
pst = con.prepareStatement("SELECT * FROM flight WHERE route_id=? AND date_dep=?");
rs = pst.executeQuery();
pst.setInt(1, routeid);
pst.setDate(2, sqlDate);
我现在收到此错误。我在网上发现postgres有一些og bug,但我不知道如何修复它。
org.postgresql.util.PSQLException:没有为参数1指定值
我的不好,我在设置值之前执行查询。我现在工作。非常感谢你
答案 0 :(得分:1)
一些事情:
不要附加字符串以将参数放入查询中。将占位符放在查询中,然后绑定参数。
从日期选择器构建Date对象,然后将其绑定到相应的查询占位符(请参阅#1)
请注意日期的时间部分。如果您只关心日期,而不关心时间,请始终将日期的时间部分设置为0.如果您按日期存储日期但仅按日期查询,则您将不得不查询日期更长的航班比上一个日期的午夜少于有关日期的午夜。
答案 1 :(得分:0)
查看PreparedStatement
文档,了解如何正确使用它。
您应该按如下方式编写查询 -
pst = con.prepareStatement("SELECT * FROM flight WHERE route_id= ? AND date_dep= ?");
并将参数设置如下 -
//pst.setXXX(1, routed); just choose the appropriate type for the route_id column
pst.setDate(2, dateCh.getDate());
请注意,目前您甚至没有将参数括在引号中。正确编写的查询看起来像... where col1 = 'val1' and col2 = 'val2' ...
。
当您执行... "AND date_dep="+dateCh.getDate() ...
之类的操作时,这相当于执行..."AND date_dep="+dateCh.getDate().toString()...
。最终产生类似... AND date_dep=Apr ...
的东西。