Click here to Skip to main content
15,885,216 members
Articles / .NET

Connecting DB2/iSeries From .NET Application

Rate me:
Please Sign up or sign in to vote.
4.50/5 (2 votes)
15 Feb 2011CPOL2 min read 59K   2   5
How to connect DB2/iSeries from .NET application

I need to connect to a DB2 from a .NET application. But it’s in iSeries system. I did not know what is the way do it. I read a lot of articles/blog posts and they really helped me. But in this post, I thought of consolidating them for fast reference.

There are two .NET data providers for DB2.

  1. IBM.Data.DB2.iSeries
  2. IBM.Data.DB2

Both providers follow the same rules/guidelines of common ADO.NET components. For an example, both have Connection, Command, DataAdapter, DataReader. But there are differences and limitations.

IBM.Data.DB2.iSeries

Using this provider, you can only access the iSeries system. You have to install iSeries Client Access to development machine and/or server. It is quite a bit setup file ( > 3GB with 64Bit version), but we required (refer the below screen shots):

  • .NET Data Provider
  • Header, Library and Documentation

clip_image002clip_image002[12]

Figure 1

There are limitations/unsupported features [IBM Redbooks 2005 ,Page 38]  in this provider, below lists 3 out of 11.

  1. User-defined types (UDTs): Although some features may work, extensive testing has not
    been done using the IBM.Data.DB2.iSeries provider with UDTs.
  2. Distributed relational database architecture (DRDA®), including the CONNECT and
    DISCONNECT statements.
  3. SET TRANSACTION, COMMIT, and ROLLBACK statements: Instead, we recommend
    using the built-in transaction support provided via the iDB2Connection.BeginTransaction() method, and the iDB2Transaction object.

I think they have stopped update/improvements for this provider after .NET version 1.1

IBM.Data.DB2

This comes as new IBM data provider for .NET 2.0 and has rich features. For easier development, it is coming with Visual Studio Add-in. Also IBM released beta version for .net 4.0 and add-in for VS 2010. You can see details and download by clicking this link.

Testing DB2 .NET Connection

After installing either IBM Data Server Client or IBM Data Server Runtime Client, we can test the connection by running the following command:

To connect iSeries system, we have to give the port no. 446 (default) to the connection string, Server=[IP:PORT].

C:\Program Files\IBM\SQLLIB\BIN>testconn20.exe "User ID=[UserName];Password=[pwd];

Database=[Data Base Or Alias];Server=[IP];"

If this succeeds, it should dump output to the console similar to the following. [Beginning DB2 2008, Page 282]

Step 1:Printing version info

    .NET Framework version: 2.0.50727.42
    DB2 .NET provider version: 9.0.0.2

    Capability bits: ALLDEFINED
    Build: 20070524

    Factory for invairant name IBM.Data.DB2 verified
    Elapsed: 7.15625
    
 
Step 2: Connecting using "User ID=fuzzy;Password=fuzzy;Database=SAMPLE;

    Server=localhost;ServerType=db2;pooling=false"
    Server type and version: DB2/NT 09.05.0000

    Elapsed: 4.640625
 

Step 3: Selecting rows from SYSIBM.SYSTABLES to validate existence of packages
    SELECT * FROM SYSIBM.SYSTABLES FETCH FIRST 5 rows only

    Elapsed: 0.890625
 

Step 4: Calling GetSchema for tables to validate existence of schema functions
    Elapsed: 1.78125

 
Test passed.

References

  • [IBM Redbooks 2005]:  Hernando Bedoya,Carlos Carminati,Lorie DuBois,Jarek Miszczyk,Ajit Mungale. Integrating DB2 Universal Database for iSeries with Microsoft ADO .NET. 2005
  • [Beginning DB2 2008]: Grant Allen,Beginning DB2: From Novice to Professional, Apress 2008

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Brandix Lanka Pvt Ltd.
Sri Lanka Sri Lanka
I’ve started my career in 2001 with Microsoft .net ver 1.0. I’m a MCSD for .net.

Currently, I’m working for Sri Lanka’s largest apparel exporter as a Software Engineer. All projects in .net, MS Sql Server, Biztalk Server, WCF and WPF. And also, I’m developing components to the ERP. In addition to that, I’ve involved to create architecture of ERP integration.

Comments and Discussions

 
QuestionRegarding IBM.Data.DB2 Pin
hrdzp6-Feb-15 10:00
hrdzp6-Feb-15 10:00 
Questionredistribute vb.net application with IBM.Data.DB2.iSeries Pin
Member 814498310-Dec-13 0:54
Member 814498310-Dec-13 0:54 
AnswerRe: redistribute vb.net application with IBM.Data.DB2.iSeries Pin
Kelum W. Ganegoda26-Dec-13 2:32
Kelum W. Ganegoda26-Dec-13 2:32 
GeneralOne small difference Pin
Alex Trusler22-Mar-12 11:18
Alex Trusler22-Mar-12 11:18 
GeneralRe: One small difference Pin
User 55923417-Jul-12 12:10
User 55923417-Jul-12 12:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.