I have an application that connects to a database, extracts information, creates an excel file, and then deletes the file / email to X people.
The application was created in Visual Studios using the .NET 2.0 Framework (Windows Form App). It started on a 32-bit server. But recently it has been ported to a 64-bit server. Now it returns with the error "The provider" MSDAORA.1 "is not registered on the local computer."
I believe that MSDAORA is only supported for 32-bit applications, and the application pool running in IIS is not enabled for 32-bit applications.
How can I fix this problem, is there something that I can change in IIS? Or is it a code change?
source
share