--
You received this message because you are subscribed to the Google Groups "cf-orm-dev" group.
To post to this group, send email to cf-or...@googlegroups.com.
To unsubscribe from this group, send email to cf-orm-dev+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/cf-orm-dev?hl=en.
isn't that for mySQL?
not 100% up to speed yet w/ORM but if it's using cfqueryparam or something
similar, make sure to check the "String format Enable High ASCII characters and
Unicode for data sources configured for non-Latin characters" box (advanced
menu) for that datasource.
normally it's not needed w/the MS & DD drivers. jTDS i think has a
"sendStringParametersAsUnicode" parameter that's nifty to "turn unicode off" for
SELECTs that search non-unicode data (so as to avoid the sql server performance
hit).
adding "sendStringParametersAsUnicode" parameter didn't work for using the native ms sql driver.
checking the "String format Enable High ASCII characters and Unicode for data sources configured for non-Latin characters" box did the trick!
thanks much for the tip!
that's jTDS specific (and just in case you don't know, that's another, faster,
ms sql server JDBC driver).