このようなもの:
string queryString =
"SELECT OrderID, CustomerID FROM dbo.Orders;";
using (SqlConnection connection = new SqlConnection(
connectionString))
{
SqlCommand command = new SqlCommand(
queryString, connection);
connection.Open();
SqlDataReader reader = command.ExecuteReader();
try
{
while (reader.Read())
{
Console.WriteLine(String.Format("{0}, {1}",
reader["OrderID"], reader["CustomerID"]));
}
}
}
ソース: http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.aspx
これconnectionString
は、データベース製品と使用される認証メカニズム (Windows 認証、ユーザー名/パスワードなど) によって異なります。上記の例では、SQL Server を使用していることを前提としています。さまざまな の完全なリストについては、http://www.connectionstrings.com/ConnectionStrings
にアクセスしてください。