I try to connect to a SQL Anywhere 12 database with the iAnywhere.Data.SQLAnywhere.v4.0.dll.
On the database server this connection is successful, however on any other PC's I get the error Language Ressourcefile not found<dblgde12.dll, dblgen12.dll>
.
Orginal (german) error message here, unfortunately even on my english system the error message is in german.
I have found these files on the installation directory of the sql server, but I don't know what to do with them, since I can't install them in the gac.
The Connection:
iAnywhere.Data.SQLAnywhere.SAConnection connection = new SAConnection();
connection.ConnectionString = new SAConnectionStringBuilder(){ DatabaseName = "123", UserID = "123", Password =
"123", ServerName = "123" , Host = "10.11.11.10"}.ConnectionString;
connection.Open();
Thanks