How to use ODBC driver in IBM I Series

This article deals with connection string related ODBC driver in IBM i Series.
  • 1914
Standard for ODBC driver

ODBC driver provides the access of SQL to the database. In fact applications developed by it can access any data by database management system. To use IBM ODBC driver in your program use the following connection string.

Driver={iSeries Access ODBC Driver};System=user_system_name;Uid=Username;Pwd=User_Password;

Encapsulating ODBC driver

The connection string given below encapsulates the OdbcConnection class which calls the ODBC Drive. To use this in your program use the following connection string.

Driver={Client Access ODBC Driver (32-bit)};System=user_system_name;Uid=Username;Pwd=User_Password;

Further Readings


You may also want to read these related articles.

Ask Your Question

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.