码迷,mamicode.com
首页 > 数据库 > 详细

【C#学习笔记】读SQL Server2008

时间:2017-08-27 16:16:35      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:main   UI   code   tostring   oid   class   create   ring   ext   

using System;
using System.Data.SqlClient;

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            SqlConnection con = new SqlConnection("server=.\\sqlexpress;uid=sa;pwd=123456;database=stuDB");
            con.Open();

            SqlCommand com = con.CreateCommand();
            com.CommandText = "select * from stuInfo";

            SqlDataReader reader = com.ExecuteReader();

            while (reader.Read())
                Console.WriteLine(reader["stuName"].ToString() + reader["stuAge"].ToString() + reader["stuSex"].ToString());

            reader.Close();
            con.Close();
            Console.Read();
        }      
    }
}

 

【C#学习笔记】读SQL Server2008

标签:main   UI   code   tostring   oid   class   create   ring   ext   

原文地址:http://www.cnblogs.com/tiandsp/p/7440432.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!