db2的.Net核心连接字符串

时间:2019-07-11 15:00:30

标签: .net-core db2 connection-string db2-400

在.NET classic中,我曾经有一个这样的连接字符串(用于连接到db2实例):

DataSource=10.10.1.1;UserID=MyUser;Password=MyPWD;LibraryList=LIB1,*USRLIBL;Naming=System;

但是此连接字符串在.NET CORE中不再起作用。

我发现了类似的东西:

server=10.10.1.1:446;database=TheDB;user id=MyUser;password=MyPWD;

但是我没有找到LibraryList的任何东西。等价的是什么?

1 个答案:

答案 0 :(得分:0)

SystemNaming似乎只能通过代码使用,而不能在connectionstring中使用:

    using (var db = new DB2Connection(ConnectionStrings))
    {
        db.SystemNaming = true;
    }

Ref:https://www.ibm.com/support/knowledgecenter/en/SSEPGG_11.1.0/com.ibm.swg.im.dbclient.adonet.ref.doc/doc/r0060653.html