in reply to Re: Re^3: weird DBI error re: parameter binding (guess)
in thread weird DBI error re: parameter binding

Just to be clear, the DBD mostly doesn't need to "handle" [ and ] for them to just be passed along to the database to deal with and to "work".

The problem is that the DBD code that looks for placeholder ?s knows to not grab ?s inside of quotes but doesn't (at appears) know that it should ignore quotes inside of square brackets.

I doubt you can escape the single quote in a way that will both be understood by the DBD ?-finding code and correctly understood by the database. The DBD code needs to be enhanced to support this syntax.

                - tye
  • Comment on Re^5: weird DBI error re: parameter binding (guess)

Replies are listed 'Best First'.
Re: Re^5: weird DBI error re: parameter binding (guess)
by Grygonos (Chaplain) on Jul 30, 2003 at 19:55 UTC
    I think enhancing the code in such a way would support poor database naming conventions... I'm all for leaving it to break under those conditions.