c#

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

c#中连接ODBC数据库


发布日期:2019年05月03日
 
c#中连接ODBC数据库

using System;

using SystemIO;

using SystemDataSqlClient;

namespace ConsoleSqlConnection

{

/// <summary>

/// Class 的摘要说明

/// </summary>

class SqlConnectionClass

{

/// <summary>

/// 应用程序的主入口点

/// </summary>

[STAThread]

static void Main(string[] args)

{

string strCon = @server=(local);Integrated Security=true;database=Northwind;uid=sa;pwd=sa;

SqlConnection MyCon = new SqlConnection(strCon);

// 打开SQL Server数据库

try

{

MyConOpen();

// 浏览数据库

string strSQL = @select * from Customers;

SqlCommand MyCommand = new SqlCommand(strSQL MyCon);

// 将检索结果放入SqlDataReader中

SqlDataReader MyDataReader = MyCommandExecuteReader();

ConsoleWriteLine(显示数据库中的数据);

while (MyDataReaderRead())

{

ConsoleWriteLine(用户名称:{} 公司名称:{} 所在城市:{} MyDataReader[CustomerID]ToString()PadRight() MyDataReader[CompanyName]ToString()PadRight() MyDataReader[City]ToString());

}

MyDataReaderClose();

}

catch (Exception ex)

{

ConsoleWriteLine({} exToString());

}

finally

{

// 使用完毕关闭数据库

MyConClose();

}

ConsoleReadLine();

}

}

}

               

上一篇:C#用Activex实现Web客户端读取RFID功能

下一篇:体验VS.NET 2005的winform新功能