本文实例讲述了C#编程实现连接ACCESS数据库的方法。分享给大家供大家参考,具体如下:
一、建立FORM窗体,加一个按钮控件,加一个DATAGRIDVIEW控件。
二、双击FORM,加入命名空间
复制代码 代码如下:
using System.Data.OleDb;
双击按钮,进入按钮代码,写如下代码
1
2
3
4
5
6
7
8
9
10
|
OleDbConnection strConnection = new OleDbConnection( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + "员工信息.mdb" + ";Persist Security Info=False" ); //建立数据库引擎连接,注意数据表(后缀为.db)应放在DEBUG文件下 OleDbDataAdapter myda = new OleDbDataAdapter("select * from 雇员 ,strConnection); //建立适配器,通过SQL语句去搜索数据库 DataSet myds = new DataSet(); //建立数据集 myda.Fill(myds, "雇员" ); //用FILL的方式将适配器已经连接好的数据表填充到数据集MYDS这张表 dataGridView1.DataSource = myds.Tables[ "联系人ID" ]; //用显示控件来显示表 |
三、按F5运行后,点击BUTTON按钮,便会显示相应的SQL语句下的数据库里的表。
下面利用Command和reader对象在控制台应用程序下输出数据。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.OleDb; namespace ConsoleApplication19 { class Program { static void Main( string [] args) { OleDbConnection mycon = null ; OleDbDataReader myReader= null ; try { string strcon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=db4.mdb;" ; mycon = new OleDbConnection(strcon); mycon.Open(); string sql = "select * from 雇员 " ; OleDbCommand mycom = new OleDbCommand(sql, mycon); myReader = mycom.ExecuteReader(); while (myReader.Read()) { Console.WriteLine(myReader.GetString(0)+ " " +myReader.GetDouble(1)+ " " +myReader.GetString(2)+ " " +myReader.GetString(3)+ " " +myReader.GetString(4)); } } finally { myReader.Close(); mycon.Close(); } } } } |
希望本文所述对大家C#程序设计有所帮助。