我必须连接到DB2
安装在其他系统上的数据库。我有服务器的机器名称、我想连接的数据库名称、端口号和凭据。我的系统上没有为 DB2 安装任何客户端。我想使用OLEDB
连接。
我可以在不安装客户端的情况下实现这一点吗?还让我知道哪些参考 dll 将帮助我实现这一目标,即我应该使用什么 - IBM OLE DB Provider for DB2 或 Microsoft OLEDB provider for IBM DB2 或其他?我在哪里可以找到它们?
OLEDB
参考.NET DB2 OLEDB先决条件
对于ODBC
连接,我使用以下
连接字符串
<add name="DB2ConnectionString_XA"
connectionString="Driver={IBM DB2 ODBC DRIVER};Database=MyDB;Hostname=DB2GWXX;Protocol=TCPIP;Port=3700;Uid=ffghxa;Pwd=xxxx;"/>
代码:
using (OdbcConnection odbcConnection = new OdbcConnection(db2ConnectionString))
{
odbcConnection.Open();
// string commandText = "";
using (OdbcCommand command = new OdbcCommand(commandText, odbcConnection))
{
command.CommandType = System.Data.CommandType.Text;
using (OdbcDataReader reader = command.ExecuteReader())
{
if (reader.HasRows)
{
while (reader.Read())
{
}
}
}
}
}
我以前使用过 ODBC,而不是 OLEDB,但如果您决定改变对 ODBC 的看法,我还是会分享链接。您至少需要安装 Db2 客户端和驱动程序。这会将 IMB DB" odbc 驱动程序安装到您的系统中(odbc 数据源)。驱动程序可从以下站点找到:http ://www-01.ibm.com/support/docview.wss?uid=swg27016878 。
安装后添加对 IBM.Data.DB2.dll 的引用