• C# ACCESS数据库链接


     private void button1_Click(object sender, EventArgs e)
            {          

    string strConnection = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + @"E:mapSansMachine.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();

  • 相关阅读:
    go入门4---数据
    hibernate之关联关系一对多
    hibernate的主键生成策略
    hibernate的入门
    struts--CRUD优化(图片上传)
    struts2--CRUD
    struts2--入
    Maven环境搭建
    EasyUI--增删改查
    easyui--权限管理
  • 原文地址:https://www.cnblogs.com/rosesmall/p/5534843.html
Copyright © 2020-2023  润新知