dotConnect for DB2 Documentation
Devart.Data.DB2 Namespace / DB2Connection Class / UserId Property
Example

In This Topic
    UserId Property (DB2Connection)
    In This Topic
    Gets or sets the name of the user to connect.
    Syntax
    'Declaration
     
    Public Property UserId As String
    public string UserId {get; set;}

    Property Value

    The name of the user to connect.
    Remarks
    When a value is assigned to this property, the DB2Connection is closed.
    Example
    The following example creates a DB2Connection and displays the user name.
    public void CreateDB2Connection()
    {
      string myConnString = 
          "user id=db2admin;server=db2;database=SAMPLE;";
      DB2Connection db2Connection = new DB2Connection(myConnString);
      db2Connection.Open();
      MessageBox.Show("User: " + db2Connection.UserId);
      db2Connection.Close();
    }
    Public Sub CreateDB2Connection()
      Dim myConnString As String = _
          "user id=db2admin;server=db2;database=SAMPLE;"
      Dim db2Connection As New DB2Connection(myConnString)
      db2Connection.Open()
      MessageBox.Show("User: " + db2Connection.UserId)
      db2Connection.Close()
    End Sub
    See Also