문제

How does one upgrade the MySQL Connector/ODBC from 5.1 to 5.2? When I replace the connection string

Driver={MySQL ODBC 5.1 Driver};...

with

Driver={MySQL ODBC 5.2 Driver};...

it does not work and I get

"[Microsoft][ODBC Driver Manager] Der Datenquellenname wurde nicht gefunden, und es wurde kein Standardtreiber angegeben"

(If you happen to know the english error message, please remove this note and add the english error message.)

도움이 되었습니까?

해결책

The 5.2 version comes in two flavors: ANSI and Unicode, in addition to the version number the name has changed to either:

  • MySQL ODBC 5.2 Unicode Driver (recommended)
  • MySQL ODBC 5.2 ANSI Driver

See also:

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top