C#读取Access
通过using语句实现⾮GC资源的⾃动回收。
还需要有try…catch…之类的异常检测语句,检测ist。
using System;
using System.Collections.Generic;system的头文件
using System.Linq;
using System.Text;
using System.Data.OleDb;
using System.Data.SqlClient;
namespace ReadAccess
{
class Program
{
static void Main(string[] args)
{
using (OleDbConnection conn = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=school.mdb"))            {
conn.Open();
string sql = "select * from sheet1 where student='stu2'";
OleDbCommand command;
command = new OleDbCommand(sql, conn);
using (OleDbDataReader reader = command.ExecuteReader())
{
//1次读取1个记录
while (reader.Read())
{
for (int i = 0; i < reader.FieldCount; i++)
{
Console.Write("{0} ", reader[i]);
}
Console.WriteLine();
}
}
}
}
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。