SqlConnection.CreateCommand Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Membuat dan mengembalikan objek yang SqlCommand terkait dengan 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
Mengembalikan
Objek SqlCommand.
Contoh
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;
}
}
}