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
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2