欢迎光临
我们一直在努力

ado.net中的sql连接_ado.net应用

建站超值云服务器,限时71元/月

using System.Data;            // Use ADO.NET namespace
using System.Data.SqlClient; 


 SqlConnection thisConnection = new SqlConnection(
            @”Data Source=GY; Initial Catalog=northwind;uid=sa;password=datadog”); //先建立连接
 thisConnection.Open();//打开连接
         SqlCommand thisCommand = thisConnection.CreateCommand();//直接指定conn的command
也可以这样        //  SqlCommand cmd = new SqlCommand();
       //  cmd.Connection = thisConnection;
cmmand的sql命令        
thisCommand.CommandText = “SELECT CustomerID, CompanyName from Customer”;
         SqlDataReader thisReader = thisCommand.ExecuteReader();//sqldatareader不可以用new 必须直接与command关联
//用reader读出表
         while (thisReader.Read())
         {
            // Output ID and name columns
            Console.WriteLine(“\t{0}\t{1}”,
               thisReader[“CustomerID”], thisReader[“CompanyName”]);
         // Close reader 用完要关闭
         thisReader.Close();


         // Close connection
         thisConnection.Close ()


http://www.cnblogs.com/redcar/archive/2006/11/23/569859.html

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » ado.net中的sql连接_ado.net应用
分享到: 更多 (0)