c#访问OleDB err 80004005

c#访问OleDB err 80004005,c#,ms-access-2010,oledb,C#,Ms Access 2010,Oledb,我正在开发一个带有Access 2010 db连接的应用程序,我一直收到OleDB错误80004005,我不知道为什么。 const String conn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\OneDrive\Dropbox\SharpDevelop Projects\electronics inventory\electronics.mdb"; const String qCont = "se

我正在开发一个带有Access 2010 db连接的应用程序,我一直收到OleDB错误80004005,我不知道为什么。

            const String conn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\OneDrive\Dropbox\SharpDevelop Projects\electronics inventory\electronics.mdb";
    const String qCont = "select Section, Number, Stock from Container where Component = @IdComp order by Section, Number";

    int oldParamSubcat = 0;
    OleDbConnection connection = new OleDbConnection(conn);

    void GrdCompCellClick(object sender, DataGridViewCellEventArgs e)
    {
        String IdComp = grdComp[grdComp.Columns["ID"].Index, grdComp.CurrentCell.RowIndex].Value.ToString();
        try
        {
            grdSubcat.DataSource = null;
            grdSubcat.Rows.Clear();
            grdSubcat.Columns.Clear();
            connection.Open();
            OleDbCommand cmdDetail = new OleDbCommand();
            cmdDetail.Connection = connection;
            cmdDetail.CommandText = qDetail;
            cmdDetail.Parameters.AddWithValue("@IdComp", Convert.ToInt32(IdComp));

            txtDetails.Text = "";
            OleDbDataReader rdDetail = cmdDetail.ExecuteReader();

            rdDetail.Read();
            txtDetails.Text = rdDetail["Component"].ToString() + "\r\n";
            txtDetails.Text += rdDetail["Parameter"].ToString() + ": ";
            txtDetails.Text += rdDetail["Val"].ToString() + "\r\n";

            while(rdDetail.Read())
            {
                txtDetails.Text += rdDetail["Parameter"].ToString() + ": ";
                txtDetails.Text += rdDetail["Val"].ToString() + "\r\n";
            }

            rdDetail.Close();
            connection.Close();
            connection.Open();

            OleDbCommand cmdCode = new OleDbCommand();
            cmdCode.Connection = connection;
            cmdCode.CommandText = qCode;
            cmdCode.Parameters.AddWithValue("@IdComp", Convert.ToInt32(IdComp));

            txtDetails.Text += "\r\n";
            OleDbDataReader rdCode = cmdCode.ExecuteReader();

            while(rdCode.Read())
            {
                txtDetails.Text += rdCode["Seller"].ToString() + ": ";
                txtDetails.Text += rdCode["Code"].ToString() + "\r\n";
            }

            rdCode.Close();
            connection.Close();
            connection.Open();

            OleDbCommand cmdCont = new OleDbCommand();
            cmdCont.Connection = connection;
            cmdCont.CommandText = qCont;
            cmdCont.Parameters.AddWithValue("@IdComp", Convert.ToInt32(IdComp));

            txtDetails.Text += "\r\n";
            OleDbDataReader rdCont = cmdCont.ExecuteReader(); ////////// here is where i receive the error ///////////////

            while(rdCont.Read())
            {
                txtDetails.Text += "Container: ";
                txtDetails.Text += rdCont["Section"].ToString() + "-";
                txtDetails.Text += rdCont["Number"].ToString() + " = ";
                txtDetails.Text += rdCont["Stock"].ToString() + " units\r\n";
            }

            rdCont.Close();
            connection.Close();
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.ToString());
        }
    } 
代码的其余部分工作正常,我只在cmdCont.ExecuteReader()上得到错误

如果我在Access中执行查询,它运行正常。
欢迎提出任何意见。
谢谢。

章节、编号和容器列在两行之间。您不应该在表模式中使用它们,但如果您确实无法将这些名称更改为其他名称,则需要将它们放在方括号中

const String qCont = @"select [Section], [Number], Stock from [Container]
                       where Component = @IdComp order by [Section], [Number]";
此外,您还应该使用更健壮的方法来处理一次性对象,如连接、命令和读卡器。尝试以下方式将using语句添加到代码中:

try
{
    ....
    using(OleDbConnection connection = new OleDbConnection(......))
    {
         connection.Open();
         ....
         string cmdText = "yourdetailquery";
         using(OleDbCommand cmdDetail = new OleDbCommand(cmdText, connection))
         {
             .... // parameters
             using(OleDbDataReader rdDetail = cmdDetail.ExecuteReader())
             {
               ... read detail data .... 
             }
         }
         // here the rdDetail is closed and disposed, 
         // you can start a new reader without closing the connection
         cmdText = "yourcodequery";
         using(OleDbCommand cmdCode = new OleDbCommand(cmdText, connection))
         {
             .... parameters
             using(OleDbReader rdCode = cmdCode.ExecuteReader())
             {
                 // read code data...
             }
         }
         ... other command+reader
   }
   // Here the connection is closed and disposed
}
catch(Exception ex)
{
    // any error goes here with the connection closed
}

为什么要关闭并重新打开连接?您确定这些信息之间没有关系吗?也许您不需要使用三种不同的查询来从数据库中获取数据。@GolezTrol我正在关闭并重新打开,因为在某些情况下,在同一连接上打开第三个读卡器会导致错误(不知道为什么)。谢谢。我知道“部分”和“编号”(并相应地进行了更改)。但我不知道“容器”也被预订了,我也是。MS Access有这些怪癖,有时真的很烦人