Re: [BUGS] BUG #3806: PreparedStatement.setString(String) throws exception

2007-12-07 Thread Simon Riggs
On Thu, 2007-12-06 at 23:21 +, Ted Wen wrote: > sql = "select * from uuidtab where id=?"; > PreparedStatement ps = conn.prepareStatement(sql); > ps.setString(1, "8555b4c4-5b3d-41ab-9f0f-c71120a583b1"); > ResultSet rs = ps.executeQuery(); > if (rs.next()) { > System.out.println(rs.getString(1

[BUGS] BUG #3806: PreparedStatement.setString(String) throws exception

2007-12-06 Thread Ted Wen
The following bug has been logged online: Bug reference: 3806 Logged by: Ted Wen Email address: [EMAIL PROTECTED] PostgreSQL version: 8.3beta3 Operating system: Windows Description:PreparedStatement.setString(String) throws exception Details: Code fragment: String