SqlCommand Constructor(String,SqlConnection)
Initializes a new instance of the
SqlCommand class with the text of the query and a %% object.
The following example creates a
SqlCommand and sets some of its properties.
public void CreateCommand()
{
SqlConnection myConnection = new SqlConnection(
"User Id=sa;Server=localhost;Initial Catalog=Test;");
string mySelectQuery = "SELECT * FROM Test.Dept";
SqlCommand myCommand = new SqlCommand(mySelectQuery, myConnection);
myCommand.FetchSize = 100;
}
Public Sub CreateCommand()
Dim myConnection As New SqlConnection( _
"User Id=sa;Server=localhost;Initial Catalog=Test;")
Dim mySelectQuery As String = _
"SELECT * FROM Test.Dept"
Dim myCommand As New SqlCommand(mySelectQuery, myConnection)
myCommand.FetchSize = 100
End Sub