dotConnect for DB2 Documentation
Devart.Data.DB2 Namespace / DB2Connection Class / DB2Connection Constructor / DB2Connection Constructor()
Example

In This Topic
    DB2Connection Constructor()
    In This Topic
    Initializes a new instance of the DB2Connection class.
    Syntax
    'Declaration
     
    Public Function New()
    public DB2Connection()
    Remarks
    When a new instance of DB2Connection is created, the read/write properties are set to the following initial values unless they are specifically set using their associated keywords in the ConnectionString property.
    Properties Initial Value
    ConnectionString empty string ("")
    ConnectionTimeout 15
    Password empty string ("")
    UserId empty string ("")
    Example
    The following example creates and opens a DB2Connection.
    public void CreateDB2Connection()
    {
      DB2Connection db2Connection = new DB2Connection();
      db2Connection.ConnectionString = 
          "user id=db2admin;server=db2;database=SAMPLE;";
      db2Connection.Open();
      //Do something
      db2Connection.Close();
    }
    Public Sub CreateDB2Connection()
      Dim db2Connection As New DB2Connection()
      db2Connection.ConnectionString = _ 
          "user id=db2admin;server=db2;database=SAMPLE;"
      db2Connection.Open()
      'Do something
      db2Connection.Close()
    End Sub
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also