配置对我的SQL Server的访问

时间:2013-12-11 08:47:15

标签: c# sql-server

我想将我的SQL Server与C#链接,但是我收到了一个错误

  

警告
  元素'configSections'具有无效的子元素'connectionStrings'。预期可能元素的列表:'section,sectionGroup'。

想知道我如何处理这个问题,谢谢。

这是我的配置:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <connectionStrings>
      <add name="ConString" connectionString="Data Source=BOY-PC;Initial   Catalog=Test;Integrated Security=True"
           providerName="System.Data.sqlClient"/>
    </connectionStrings>
  </configSections>
</configuration>

2 个答案:

答案 0 :(得分:4)

不要将连接字符串放在配置部分中 - 请使用:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
   <configSections />
   <connectionStrings>
      <add name="ConString" 
           connectionString="Data Source=BOY-PC;Initial Catalog=Test;Integrated Security=True"
           providerName="System.Data.sqlClient"/>
    </connectionStrings>
</configuration>

您的节点<connectionStrings>必须直接位于<configuration>下(不在<configSections>内 - 该节点用于定义新的自定义配置部分 - 这里不需要<connectionStrings>是系统定义的配置部分)

答案 1 :(得分:0)

System.out.println("Array\t Nummbers");
    int Array[][] = { { 39, 16, 13, 1, 35, 31, 47 }, { 39, 2, 45, 44, 38, 19, 40 }, { 39, 43, 33, 16, 20, 9, 30 },
            { 42, 23, 26, 27, 1, 48, 47 }, { 18, 25, 47, 31, 46, 36, 20 }, { 21, 34, 19, 6, 4, 25, 29 },
            { 30, 5, 22, 23, 11, 47, 19 }, { 34, 30, 7, 31, 16, 45, 41 }, { 37, 9, 7, 42, 45, 24, 5 },
            { 39, 34, 28, 5, 37, 17, 22 }, { 42, 47, 34, 15, 35, 41, 28 }, { 22, 8, 46, 30, 36, 28, 11 };