C# ACCESS数据库链接
Posted 倒着爬行的蜗牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# ACCESS数据库链接相关的知识,希望对你有一定的参考价值。
private void button1_Click(object sender, EventArgs e)
{
string strConnection = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + @"E:\map\SansMachine.mdb";
OleDbConnection objConnection = new OleDbConnection(strConnection); //建立连接
objConnection.Open(); //打开连接
OleDbCommand sqlcmd = new OleDbCommand(@"select * from ParamFactValue where TestNo=10", objConnection); //sql语句
OleDbDataReader reader = sqlcmd.ExecuteReader(); //执行查询
while (reader.Read())
{ //这个read调用很重要!不写的话运行时将提示找不到数据
//age = (int)reader.getstring(0); //取得字段的值
textBox1.Text = reader["Name"].ToString();
textBox2.Text = reader["TheValue"].ToString();
}
objConnection.Close();
reader.Close();
}
以上是关于C# ACCESS数据库链接的主要内容,如果未能解决你的问题,请参考以下文章
C#连接ACCESS数据库,显示到dataGridView表格
Clear with query in database access 97 mdb c#
使用带有日期的 C# 在 MS Access 97 数据库中清除查询