c#

位置:IT落伍者 >> c# >> 浏览文章

ADO.NET中的SQL连接方法代码


发布日期:2023年01月02日
 
ADO.NET中的SQL连接方法代码

using SystemData; // Use ADONET namespace

using SystemDataSqlClient;

SqlConnection thisConnection = new SqlConnection(

@Data Source=GY; Initial Catalog=northwind;uid=sa;password=datadog); //先建立连接

thisConnectionOpen();//打开连接

SqlCommand thisCommand = thisConnectionCreateCommand();//直接指定conn的command

也可以这样 // SqlCommand cmd = new SqlCommand();

// cmdConnection = thisConnection;

cmmand的sql命令

thisCommandCommandText = SELECT CustomerID CompanyName from Customer;

SqlDataReader thisReader = thisCommandExecuteReader();//sqldatareader不可以用new 必须直接与command关联

//用reader读出表

while (thisReaderRead())

{

// Output ID and name columns

ConsoleWriteLine(\t{}\t{}

thisReader[CustomerID] thisReader[CompanyName]);

// Close reader 用完要关闭

thisReaderClose();

// Close connection

thisConnectionClose ()

               

上一篇:C#高级编程:用数据适配器来填充 DataSet

下一篇:.NET编程语言的未来