SqlCeDataAdapter.SelectCommand Property
Visual Studio 2010
Gets or sets an SQL statement used to select records in the data source.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Property Value
Type: System.Data.SqlServerCe.SqlCeCommandA SqlCeCommand that is used during Fill to select records from data source for placement in the DataSet.
When SelectCommand is assigned to a previously-created SqlCeCommand, the SqlCeCommand is not cloned. The SelectCommand maintains a reference to the previously-created SqlCeCommand object.
If the SelectCommand does not return any rows, no tables are added to the DataSet, and no exception is raised.
The following example creates a SqlCeDataAdapter and sets some of its properties.
SqlCeDataAdapter da = new SqlCeDataAdapter(); SqlCeConnection conn = new SqlCeConnection("Data Source = MyDatabase.sdf"); SqlCeCommand cmd = new SqlCeCommand("SELECT * FROM Customers WHERE Country = @country", conn); cmd.Parameters.Add("@country", SqlDbType.NVarChar, 15); cmd.Parameters[0].Value = "UK"; da.SelectCommand = cmd;