Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

I have an app that i have developed in VB.NET and it runs fine on my computer. My computer has the SQL 17 Database installed on it.

When I deploy the app to a client that only has an ODBC installed (used by another application to access the same database) I get the following error when trying to access the DB: System.TypeInitializationException: The type initializer for 'Sap.Data.SQLAnywhere.SAConnection' threw an exception. ---> Sap.Data.SQLAnywhere.SAException: Cannot find the language resource file (dblgen17.dll).

I have used the SQL 17 Deployment wizard and have installed it on the client but it still cannot find the "dblgen17.dll" even though I can find it on the workstation.

I must be missing something simple but any advice would be appreciated. Not sure what information you may need to answer so I will be watching for more questions.

asked 08 Nov '19, 16:59

wraventjr's gravatar image

wraventjr
41227
accept rate: 50%

Do you have this file here? Because I have it on my PC: \SQL Anywhere 17\Bin64\dblgen17.dll

(09 Nov '19, 06:34) Vlad

Does the PATH variable contain the path to the SQL Anywhere 17 bin32 or bin64 subdirs?

And is your app 32-bit or 64-bit?

(09 Nov '19, 08:28) Volker Barth

I do have the file on the computer. C:\Program Files\SQL Anywhere 17\Bin64. Yes, the path is in the System Variables in the environment.

(09 Nov '19, 19:13) wraventjr

my app is a 64-bit app. Written in VB.NET.

(11 Nov '19, 07:56) wraventjr

I found my problem thanks to Volker Barth. I had "Prefer 32-bit" checked in my Compile TAB in the Project Properties. As I understand it you can't connect to a SQL 17 with a 32-bit DSNLess connection. I recompiled using X64 as the target CPU and it worked. Do I need to give credit to Volker in some way?

permanent link

answered 11 Nov '19, 09:07

wraventjr's gravatar image

wraventjr
41227
accept rate: 50%

converted 11 Nov '19, 09:13

Volker%20Barth's gravatar image

Volker Barth
40.2k361550822

As I understand it you can't connect to a SQL 17 with a 32-bit DSNLess connection.

AFAIK, you can. But your application's bitness must match that of the database client, i.e. for a 32-bit application, you would need the driver in the Bin32 subdir, the one from Bin64 won't work here.

(11 Nov '19, 09:13) Volker Barth

Thanks, hopefully, I can test this today. I am deciding whether to install 17 drivers or changing the app to use 10 drivers.

(11 Nov '19, 10:00) wraventjr

I tried today to reference the SQL 10 dll in my app and could not. So I could not use the SQL 10 driver installed for access to my database. May be me but got an error when trying to reference the dblgen10.dll. I decided to deploy an SQL 11 client deployment and was able to reference in my project and with the SQL 11 deployment my app worked. Thanks for everyone's input. This is a fantastic reference for me.

(11 Nov '19, 16:49) wraventjr
Replies hidden

Is there a particular reason you do not use a SQL Anywhere 17 client when using a v17 server?

(11 Nov '19, 18:11) Volker Barth
1

The provider of the Desktop application that we use for Order Entry and Quoting etc. provided the system initially using the SQL 10 database and ODBC. As the database was upgraded along the way the provider never updated the ODBC because it worked fine with original ODBC. It still does! I was trying to write an application using a DSNLess connection and use the SQL10 dll's. That was my goal so I didn't have to add a driver to the workstation where I was installing my app. That is the only reason.

(19 Nov '19, 11:35) wraventjr
1

This is not the result of "you can't connect to a SQL 17 with a 32-bit DSNLess connection." It is that the 32 bit SQL Anywhere 17 ODBC driver was not correctly installed i.e., it was missing/could not find deployment DLLs such as the 32 bit language DLL (dblgen17.dll) required by the ODBC driver. I rarely make connections via a DSN i.e. all my PowerBuilder tested connections are 32 bit and are DNSLess. I have also confirmed that I can make a DSNLess connection in a .NET ODBC based connection. I have confirmed using task manager that the process is 32 bit and the loaded SQL Anywhere DLLs in that process were also 32 bit by using ListDLLs (from MS Sysinternals).

(19 Nov '19, 13:09) Chris Keating
showing 5 of 6 show all flat view
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×246

question asked: 08 Nov '19, 16:59

question was seen: 2,181 times

last updated: 19 Nov '19, 13:09