.NET DB2 OLEDB pre-requisites

2019-06-22 01:17发布

问题:

I have written a Windows Forms application in C#, .NET framework 2.0, that uses System.Data.OleDb to talk to an SQL Server 2000 database, which is working fine. I now need to enhance the application to talk to an DB2 database on AS/400. Is this just a matter of configuring the connection string, or do I need additional driver software (where from) and/or references in my project?

I would like to still use OLEDB, but with DB2.

Edit: I downloaded the Microsoft OLE DB Provider but was unable to install it onto my desktop development PC because I do not have SQL Server installed. This provider seems to be only for integrating SQL Server with DB2, whereas I want to integrate a Windows Forms application with DB2. Is there a different download location for an OLE DB provider that does not require SQL Server, which I can use from a Windows desktop?

回答1:

You will can use Microsoft's OLEDB for DB2 provider for this. Also the connection string will change.

Like:

Provider=DB2OLEDB;Network Transport Library=TCPIP;Network Address=xxx.xxx.xxx.xxx;Initial Catalog=MyCtlg;Package Collection=MyPkgCol;Default Schema=Schema;User ID=myUsername;Password=myPassword;

Or you can use IBM's own IBM OLE DB Provider for DB2 that works without SQL Server.

You should look at Connection strings for IBM DB2 for all other providers and their configuration.



标签: c# .net db2