SqlConnection.CreateCommand Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates and returns a SqlCommand object associated with the SqlConnection.
public:
Microsoft::Data::SqlClient::SqlCommand ^ CreateCommand();
public Microsoft.Data.SqlClient.SqlCommand CreateCommand ();
override this.CreateCommand : unit -> Microsoft.Data.SqlClient.SqlCommand
Public Function CreateCommand () As SqlCommand
Returns
A SqlCommand object.
Examples
using Microsoft.Data.SqlClient;
public class A
{
public static void Main()
{
using (SqlConnection connection = new SqlConnection("Data Source=(local);Initial Catalog=Northwind;Integrated Security=SSPI;"))
{
connection.Open();
SqlCommand command = connection.CreateCommand();
command.CommandText = "SELECT * FROM Categories ORDER BY CategoryID";
command.CommandTimeout = 15;
command.CommandType = CommandType.Text;
}
}
}