随笔-1  评论-1  文章-1  trackbacks-0

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 ()

posted on 2006-11-23 14:46 風清雲淡 阅读(391) 评论(1)  编辑 收藏

评论:
#1楼  2006-11-23 20:32 | 虾米      
加油~~~
  回复  引用  查看    

标题  
姓名  
主页
Email (只有博主才能看到) 
验证码 *  看不清,换一张 [登录][注册]
内容(请不要发表任何与政治相关的内容)  
  登录  使用高级评论  新用户注册  返回页首  恢复上次提交      
 
另存  打印