使用ODBC数据提供程序访问MSSQL数据库
使用OdbcDataReader读取数据库
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.Odbc; namespace OdbcProvider { class Program { static void Main(string[] args) { string connString = @"Dsn=ODBCnorthwind"; string sql = @"select * from employees"; OdbcConnection conn = null; OdbcDataReader reader = null; try { conn = new OdbcConnection(connString); conn.Open(); OdbcCommand cmd = new OdbcCommand(sql, conn); reader = cmd.ExecuteReader(); Console.WriteLine("This program demonstrates the use of " + "the ODBC Data Provider."); Console.WriteLine("Querying database {0} with query {1}\n", conn.Database, cmd.CommandText); Console.WriteLine("First Name\tLast Name\n"); while (reader.Read()) { Console.WriteLine("{0} | {1}", reader["FirstName"].ToString().PadLeft(10), reader[1].ToString().PadLeft(10)); } } catch (Exception e) { Console.WriteLine("Error: " + e); } finally { reader.Close(); conn.Close(); } Console.ReadKey(); } } }