Developers community number 1 connection string reference

UniObjects for .NET

This is a .NET Framework Class Library provided by IBM.
Coding
Add a reference to the assembly and include the IBMU2.UODOTNET namespace. Instantiate a new UniObjects.OpenSession connection object. Set the connection string and open the connection.


VB.NET code sample
Imports IBMU2.UODOTNET
Dim myConnection As UniObjects.OpenSession = New UniObjects.OpenSession;();
myConnection.ConnectionString = myConnectionString
myConnection.Open()
//execute queries, etc
myConnection.Close()


C# code sample
using IBMU2.UODOTNET;
UniObjects.OpenSession myConnection = new UniObjects.OpenSession;();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
//execute queries, etc
myConnection.Close();


Connection Strings
The UniObjects for .NET class library can be used to connect to the following data sources.

To see the available connection options, navigate to the connection strings reference by clicking the data source link.
IBM UniVerse
IBM UniData
Additional info or comments on this class library? Want to submit content?

Send an e-mail to
Copyright © 2012 ConnectionStrings.com   |   All Rights Reserved   |   Powered by CSAS   |   Send feedback, articles, requests and more connection strings here.