您的位置:首页 > 数据库

C# ACCESS数据库链接

2016-05-27 15:41 351 查看
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();

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: