tags:

views:

85

answers:

2

When I am trying to connect to AS400 using C#.NET, it's giving me error:

IBMDA400 is not registered on local Machine

Can anyone please explain me about this?

A: 

When you say "connect", how are you trying to connect? ADO.Net? ODBC?

Can you post some code?

ajh1138
I am using OLEDB Provider
Anoop
+2  A: 

For the provider you're using, IBM's Client Access needs to be installed. The OleDbProvider for IBM is included inthe Client Access package.

A better solution would be to use the IBM for .Net provider.

If you have Client Access installed on the machine, you can get at the .Net provider by going into selective setup and choosing the .Net provider in the developer tools.

David Stratton
Thanks it's really helped
Anoop