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