a question, please help me.
От | wu xiao |
---|---|
Тема | a question, please help me. |
Дата | |
Msg-id | BAY13-F22AAE8F6AF0502ABEEFDAAD5D70@phx.gbl обсуждение исходный текст |
Ответы |
Re: a question, please help me.
Re: a question, please help me. |
Список | pgsql-jdbc |
Dear Sir or Madam, I am in trouble when I try to connect postgresql 8.03 to JBuilder9 with JDBC3 8.1. When I use no-parameter sql, my project runs well. For example, Connection db = DriverManager.getConnection(url,user,pwd); Statement st = db.createStatement(); ResultSet rs = st.executeQuery("select * from operator"); while(rs.next()) { System.out.println("ID: "+rs.getString(1)); } rs.close(); st.close(); The results are: ID: 100 ID: 101 ... But when I try to use parameter sql, my project has sqlexceptions, for example: Connection db = DriverManager.getConnection(url,user,pwd); PreparedStatement ps = db.prepareStatement("select * from operator where ID=?"); ps.setString(1,100); ResultSet rs = ps.executeQuery(); if(rs!=null) { while(rs.next()) { System.out.println("ID: "+rs.getString(1)); } rs.close(); } ps.close(); The sqlexception is:....column 'id' is not exist..... What's the reason please? All of the tables are created in Windows XP. Thank you for your any suggestion. Sincerely, Thomas Wu _________________________________________________________________ 享用世界上最大的电子邮件系统― MSN Hotmail。 http://www.hotmail.com
В списке pgsql-jdbc по дате отправления: