using System.Data; // Use ADO.NET namespace SqlConnection thisConnection = new SqlConnection( // Close connection http://www.cnblogs.com/redcar/archive/2006/11/23/569859.html
using System.Data.SqlClient;
@”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();
thisConnection.Close ()
ado.net中的sql连接_ado.net应用
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » ado.net中的sql连接_ado.net应用
相关推荐
-      未能连接一个windows服务的修复方法
-      Win10屏幕亮度调成0看不见怎么恢复?
-      Win10 Telnet不是内部或外部命令咋办
-      Win10系统有几个版本你知道吗?
-      Win10双击无法打开图片的解决方法
-      Win10你需要提供管理员权限才能复制到此文件夹的解决方法
-      Win7任务栏右下角图标空白怎么解决
-      这8种方法搞定Win10磁盘占满问题