你调用的对象是空的。 - App.config

时间:2013-04-21 13:00:57

标签: c# winforms ms-access

我收到错误,在本地窗口中我看到conSettings和connectionString值为null。我说ConfigurationManager为null是正确的,我需要创建一个新对象。也许我正在使用Access,也许我在App.config文件中遗漏了一些东西。请有人帮我解决这个问题。提前谢谢。

App.config文件......

   <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <appSettings>
       <add key="MyDBConnectionString" value="Provider=Microsoft.Jet.OLEDB.4.0;Data 
                   Source=E:\...\Database1.mdb"/>
    </appSettings>
    </configuration>

Form.cs文件......

 private void btnShow_Click(object sender, EventArgs e)
    {
        ConnectionStringSettings conSettings = ConfigurationManager.ConnectionStrings["MyDBConnectionString"];

        string connectionString = ConfigurationManager.ConnectionStrings["MyDBConnectionString"].ConnectionString; // error points here

        try
        {
            con = new OleDbConnection(connectionString);
            con.Open();
            cmd = new OleDbCommand("SELECT * FROM Table1", con);
            objReader = cmd.ExecuteReader();
            while (objReader.Read())
            {
                txtID.Text = ds.Tables[0].Rows[rno][0].ToString();
                CBAgeGroup.Text = ds.Tables[0].Rows[rno][1].ToString();
                CBGender.Text = ds.Tables[0].Rows[rno][2].ToString();
                CBCrimOffen.Text = ds.Tables[0].Rows[rno][3].ToString();
                if (ds.Tables[0].Rows[rno][4] != System.DBNull.Value)
                {
                    photo_aray = (byte[])ds.Tables[0].Rows[rno][4];
                    MemoryStream ms = new MemoryStream(photo_aray);
                   pictureBox1.Image = Image.FromStream(ms);
                }
                txtCV.Text = ds.Tables[0].Rows[rno][5].ToString();
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
        finally
        {
            con.Close();
        }
    }

我被建议使用App.config。

VS 2010 C# MS Access 2003

更新1 我的App.config现在看起来像这样......

<configuration>
    <ConnectionString>
        <add key="MyDBConnectionString"   value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Raj\Education\C_Sharp\Test1\Database1.mdb"/>
    </ConnectionString>

我现在收到错误...“配置系统无法初始化”。我现在正在谷歌上看它。

更新2 试图...

<configuration>
 <connectionStrings>
<add name="MyDBConnectionString" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data   
        Source=E:\...\Database1.mdb"/>
  </connectionStrings>
 </configuration>

接收“对象引用未设置为对象实例”的错误“再次搜索

更新3

<configuration>
<connectionStrings>
    <clear />
    <add name="MyDBConnectionString"
     providerName="System.Data.OleDb" connectionString="Provider=Microsoft.Jet.OLEDB.4.0; Source=\Database1.mdb" />
</connectionStrings>

随着更新3我收到错误相同的错误。我已经包含了添加参考系统。配置和我使用System.Configuration引用;

结论

也许VS 2010和Access 2003之间可能存在技术故障。我这次不会使用App.config。我知道SQL Server没有问题。所以我会留下它。感谢Damith和Clint的时间。

5 个答案:

答案 0 :(得分:9)

您需要阅读AppSettings键,如下所示,

string connectionString = 
      ConfigurationSettings.AppSettings["MyDBConnectionString"];

仍然会收到空值,请尝试以下步骤

  1. 在解决方案资源管理器中选择App.Config文件
  2. 在属性窗口中,选择复制到要复制的输出目录 总是。
  3. 现在构建应用程序并重试。
  4. 要访问如下所示,您需要在app config中添加connectionStrings部分

      string connectionString = 
          ConfigurationManager.ConnectionStrings["MyDBConnectionString"].ConnectionString; // error points here
    

    示例应用配置

    <?xml version="1.0"?>
    <configuration>
      <connectionStrings>
        <add name="MyDBConnectionString" 
        connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data 
                   Source=E:\...\Database1.mdb"/>
      </connectionStrings>
    </configuration>
    

答案 1 :(得分:6)

检查您是否已将app.config文件放在启动项目下。在我的情况下,我只需将app.config文件放在我的启动项目下,问题就解决了。

答案 2 :(得分:2)

这在我的类库中发生,并且控制台应用程序设置为运行以进行调试。

有必要在控制台应用中添加与app.config的连接,因为如果您从外部进程启动它,它将无法在您的库中找到它。

答案 3 :(得分:1)

此:

string connectionString = ConfigurationManager.ConnectionStrings["MyDBConnectionString"].ConnectionString;

是你的问题。

您正在访问ConfigurationManager.ConnectionStrings以获取配置项,但在App.Config文件中,您将其放在appSettings下,这是配置文件的不同部分而不是{ {1}}

您可以将连接字符串放在app.config的相关ConnectionStrings部分中(可通过ConnectionStrings访问,也可以访问ConfigurationManager.ConnectionStrings部分。

请参阅:

http://msdn.microsoft.com/en-us/library/ms254494(v=vs.80).aspx

有关存储连接字符串的MSDN准则。

答案 4 :(得分:0)

即使多次审查app.config文件和我的错误代码,我也遇到了同样的问题,但我没有在我的代码中发现任何错误。最终我发现了一个愚蠢的错误,我的编译器默认将应用程序配置文件名称为&#39; app1.config&#39;,当我将其更改为&#39; app.config&#39;每件事对我都很好。

希望它会有所帮助。