Language/C#
C# mssql 접속 및 Select 예제
RAY.D
2015. 9. 22. 08:32
C# program that uses SqlConnection using System; using System.Data.SqlClient; class Program { static void Main() { // // First access the connection string. // ... This may be autogenerated in Visual Studio. // string connectionString = ConsoleApplication1.Properties.Settings.Default.ConnectionString; // // In a using statement, acquire the SqlConnection as a resource. // using (SqlConnection con = new SqlConnection(connectionString)) { // // Open the SqlConnection. // con.Open(); // // The following code uses an SqlCommand based on the SqlConnection. // using (SqlCommand command = new SqlCommand("SELECT TOP 2 * FROM Dogs1", con)) using (SqlDataReader reader = command.ExecuteReader()) { while (reader.Read()) { Console.WriteLine("{0} {1} {2}", reader.GetInt32(0), reader.GetString(1), reader.GetString(2)); } } } } }