Sergey Malinin

Results 27 comments of Sergey Malinin

Fixed. The issue, when `BufferLength == 0` was fixed, - if Unicode conversion isn't used (Unicode->Ansi or UCS4->UCS2 and etc) it will works - if Unicode conversion is used, it...

Function **SQLBindParameter** (from libiodbc ) could not return **SQL_INVALID_HANDLE** because such case isn't existed in the source code. https://github.com/openlink/iODBC/blob/e2375b64ad778af1d33694a0ec537a048006d8a0/iodbc/prepare.c#L445 Attach here your log file for issue.

You could do next: 1. Add the next to your `odbc.ini` , for enable trace iODBC ``` [ODBC] Trace = 1 TraceFile = /Users/myuid/odbc.log ``` but it may not help...

@sagar-gopale Don't try add DSN under MS Excell. Run iODBC Administrator App directly and create new DSN. MS Excell is sandboxed app, so if you run iODBC Administrator under MS...

@sagar-gopale Also look at => https://github.com/openlink/iODBC/issues/29#issuecomment-476630516 and https://github.com/openlink/iODBC/issues/97 If your MongoDB ODBC driver uses some dynamic libs that is installed for example to /usr/local/libs or MongoDB ODBC driver installed to...

@Promisey 1. If you want to use `isql` and unixodbc, the content in `.odbc.ini` must be looks like(ie looks to value for **Driver**) : ``` [sqlite] Driver = /opt/homebrew/lib/libsqlite3odbc.so Database=/Users/uid/mytest.sqlite...

Read here https://github.com/openlink/iODBC/issues/29 at first Note: - move /usr/local/mysql-connector-odbc-8.2.0-macos13-x86-64bit/lib/libmyodbc8w.so to /Library/ODBC/... symlinks will NOT work, only hard link or copy/move - also note that you must check all dynamic libs,...

@BUMPRW The next solution must works => https://github.com/openlink/iODBC/issues/29#issuecomment-476630516 It is for MariaDB odbc driver, but basic idea is the same. Did you use these steps ?

1. You need move ALL libs, that is used by drivers and that is located in /usr/local/.. 2. What kind of MySQL ODBC installer did you use the - _**DMG...

Everything works for me on macOS 12.6 on M1 cpu I did next: - download mysql-connector-odbc-8.2.0-macos13-arm64.tar.gz - extract all files from ./lib/ in tar archive to /Library/ODBC/MySQL/ ``` -rw-r--r-- 1...