Firebird ADO.NET Provider SDK Documentation - v1.7

FbDataAdapter Constructor (String, String)

Creates a new instance of the FbDataAdapter class with an SQL SELECT statement and a connection string.

[Visual Basic]
Overloads Public Sub New( _
   ByVal selectCommandText As String, _
   ByVal selectConnectionString As String _
)
[C#]
public FbDataAdapter(
   string selectCommandText,
   string selectConnectionString
);

Parameters

selectCommandText
A string that is a SQL SELECT statement or stored procedure to be used by the SelectCommand property of the FbDataAdapter.
selectConnectionString
The connection string.

Remarks

When you create an instance of FbDataAdapter, the following read/write properties are set to their default values, as shown in the table.

Properties Default Value
MissingMappingAction MissingMappingAction.Passthrough
MissingSchemaAction MissingSchemaAction.Add

See Also

FbDataAdapter Class | FirebirdSql.Data.Firebird Namespace | FbDataAdapter Constructor Overload List