ULDataAdapter(String, ULConnection) constructor

Initializes a ULDataAdapter object with the specified SELECT statement and connection.

Syntax
Visual Basic
Public Sub New( _
   ByVal selectCommandText As String, _
   ByVal selectConnection As ULConnection _
)
C#
public  ULDataAdapter(
   string  selectCommandText,
   ULConnection selectConnection
);
Parameters
  • selectCommandText   A SELECT statement to be used by the ULDataAdapter.SelectCommand of the ULDataAdapter.

  • selectConnection   A ULConnection object that defines a connection to a database.

See also