Gerry Gattis wrote:
> I had to make an unexpected adjustment in a query string in order to
> insert a record into a table. I was would like to know if anyone has a
> remedy for this. Here is a short description.
>
> String strInsert = "insert into myTable (lastName) values (?)";
> PreparedStatement stm = conn.prepareCall(strInsert);
> stm.setString(1, "Smith");
> // OK so far
> stm.execute();
> //fails with an error message attribute Smith not found
That sounds like a bug. What driver version are you using?
-O