Differences in prepared vs. direct statements using Oracle ODBC - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T01:44:20Zhttp://stackoverflow.com/feeds/question/218332http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218332/differences-in-prepared-vs-direct-statements-using-oracle-odbc1Differences in prepared vs. direct statements using Oracle ODBCvividos2008-10-20T12:57:40Z2008-10-20T13:11:12Z
<p>I'm using an Oracle database with a collation different to my OS language. I'm accessing the database using the ODBC driver. When I prepare a statement (e.g. a "select * from x where=?"), that involves special non-ASCII characters supported by the DB's collation, I'm finding the data row with the characters. When I execute the select directly with the argument in the sql string, the data row isn't found.</p>
http://stackoverflow.com/questions/218332/differences-in-prepared-vs-direct-statements-using-oracle-odbc/218361#2183611Answer by MusiGenesis for Differences in prepared vs. direct statements using Oracle ODBCMusiGenesis2008-10-20T13:11:12Z2008-10-20T13:11:12Z<p>Pure guess on my part, but it may be because your client computer isn't encoding the sql string with the argument written into it correctly. I think that if your client is set to a different regional setting than the DB collation, the character array containing the select statement that gets sent to Oracle would contain "incorrect" bytes where the original funky characters were located - Oracle would interpret these as some character other than the one you originally sent (causing the row to not be found).</p>
<p>Is there any reason you can't just use the parameterized approach (since it is working correctly)?</p>