I get an error in ODBCConfig when i try to use the mysql driver. After some digging i found that it needs to have /usr/lib/libmyodbc3S.so in the setup line of the driver.
try this: #export ODBCINI=/etc/unixODBC/odbcinst.ini #export ODBCSYSINI=/etc/unixODBC/ ======== /etc/unixODBC/odbcinst.ini ======== [ODBC Data Sources] myodbc3 = MyODBC 3.51 Driver DSN [myodbc3] Description = ODBC Driver for MySQL Driver = /usr/lib/libmyodbc3.so Setup = /usr/lib/libmyodbc3S.so FileUsage = 1 CPTimeout = CPReuse = ======== /etc/unixODBC/odbcinst.ini ======== ========== /etc/unixODBC/odbc.ini ========== [my] Description = MySQL Driver = myodbc3 Server = localhost Database = mysql Port = 3306 Socket = /var/run/mysqld/mysqld.sock Option = Stmt = Trace = On TraceFile = stderr DSN = mysql [test] Description = MySQL ODBC Driver DSN Driver = myodbc3 Server = localhost Database = test Port = 3306 Socket = Option = Stmt = ========== /etc/unixODBC/odbc.ini ========== #isql -v my [user] [password] #isql -v test [user] [password]