Firebird ADO.NET Provider SDK Documentation - v1.7

FbDataAdapter.SelectCommand Property

Gets or sets an SQL statement or stored procedure used to select records in the data source.

[Visual Basic]
<Category(Category:="Fill"), _  DefaultValue(Value:=null)>
Public Property SelectCommand As FbCommand
[C#]
[Category(Category="Fill")]
[DefaultValue(Value=null)]
new public FbCommand SelectCommand {get; set;}

Property Value

An FbCommand that is used during a fill operation to select records from data source for placement in the DataSet.

Remarks

When SelectCommand is assigned to a previously created FbCommand, the FbCommand is not cloned. The SelectCommand maintains a reference to the previously created FbCommand object.

If the SelectCommand does not return any rows, no tables are added to the DataSet, and no exception is raised.

See Also

FbDataAdapter Class | FirebirdSql.Data.Firebird Namespace