0

这是我更新的问题..

当我尝试使用 c# 在数据库中执行一些 sql 文件时,我收到如下所示的错误:

在此处输入图像描述

我的 C# 代码是这样的:

if (comboBox1.SelectedItem.ToString() == "master" && comboBox2.SelectedItem.ToString() == "master.sql")
{
    oConnection.Open();
    Server server = new Server(new ServerConnection(oConnection));
    if (MessageBox.Show("Execute " + comboBox2.SelectedItem.ToString() + " in the database " + comboBox1.SelectedItem.ToString() + " ?", "Execute?", MessageBoxButtons.YesNo) == DialogResult.Yes)
    {
        var output = server.ConnectionContext.ExecuteNonQuery(@"D:\Testpgm\master.sql");
        if (!output.Equals(0))
        {
            try
            {
                MessageBox.Show(comboBox2.SelectedItem.ToString() + " executed successfully in " + comboBox1.SelectedItem.ToString() + " database");
            }
            catch (Exception exc)
            {
                MessageBox.Show("Script Execution Failed,"+exc);
            }
        }
    }
    else
    {
        MessageBox.Show("Execution cancelled by the user");
    }
    else
    {
        MessageBox.Show("Either the database or the sql script file selected is wrong!!");
    }

谁能指出为什么会发生这种情况?我已经尝试了几乎所有我在谷歌搜索时发现的东西,但不幸的是得到了我所期望的......

我还尝试将绑定重定向添加到我的 app.config,因为我可以在 c:\windows\assembly 中找到“microsoft.sqlserver.batchparser.dll”版本为 10.0.0.0,并且我的 c# 应用程序查找版本 9.0.242.0,这似乎又不起作用。我使用的代码是:

<runtime>
<assemblyBinding xmlns="urn:schemas=microsoft-com:asm.v1">
<dependentAssembly>
  <assemblyIdentity name="microsoft.sqlserver.batchparser" publicKeyToken="89845dcd8080cc91" culture="neutral"/>
  <bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0"/>
  <publisherPolicy apply="no"/>
</dependentAssembly>
</assemblyBinding>
</runtime>

任何帮助将非常感激..

4

5 回答 5

0

Atlast 我已经找到了解决方案。刚刚对我的代码进行了一些更改,如下所示:

if (comboBox1.SelectedItem.ToString() == "master" && comboBox2.SelectedItem.ToString() == "master.sql")
{
oConnection.Open();
***SqlCommand SqlCmd = new SqlCommand();
SqlCmd.CommandText = textentry;
SqlCmd.Connection = oConnection;
var output = SqlCmd.ExecuteNonQuery();***
if (MessageBox.Show("Execute " + comboBox2.SelectedItem.ToString() + " in the database " + comboBox1.SelectedItem.ToString() + " ?", "Execute?", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
 if (!output.Equals(0))
    {
        try
        {
            MessageBox.Show(comboBox2.SelectedItem.ToString() + " executed successfully in " + comboBox1.SelectedItem.ToString() + " database");
        }
        catch (Exception exc)
        {
            MessageBox.Show("Script Execution Failed,"+exc);
        }
    }
}
else
{
    MessageBox.Show("Execution cancelled by the user");
}
else
{
    MessageBox.Show("Either the database or the sql script file selected is wrong!!");
}
于 2013-08-20T06:53:13.473 回答
0

.Net 运行时的不同版本?如果您的应用程序使用 .Net4,但要加载的 dll 是使用 .Net2 创建的,您可以在配置部分添加一个条目:

<startup useLegacyV2RuntimeActivationPolicy="true"></startup>
于 2013-08-20T06:39:27.667 回答
0

对于寻找此 dll 并且无法通过相关的 MS SQL Server 功能包安装它的其他人,该 dll 位于:

C:\Windows\assembly\GAC_64\Microsoft.SqlServer.BatchParser\

然后在 SQL Server 版本的子文件夹中。如果您以 32 位的方式运行该进程,则它会在其中GAC_32。将文件复制到应用程序的bin文件夹中,一切正常。

于 2014-04-20T09:26:38.563 回答
0

我能够使用程序集“Microsoft.SqlServer.ConnectionInfo”、“Microsoft.SqlServer.Management.Sdk.Sfc”和“Microsoft.SqlServer.Smo”的 10.* 版本成功运行您的代码。尝试下载 2008 版的 SMO 组件,也许这是他们现在修复的错误。

于 2013-08-19T08:43:00.540 回答
0

看起来您的参考资料何时丢失 ('Microsoft.SqlServer.BatchParser') 。为了验证这一点,请执行以下操作:

  1. 打开您的解决方案资源管理器 (Ctrl+w, s)。
  2. 扩展您的项目。
  3. 展开引用“文件夹”
  4. 找到“Microsoft.SqlServer.BatchParser”参考。

'Microsoft.SqlServer.BatchParser' 引用是否用感叹号突出显示?这么想...
突出显示它并按 F4 获取属性。

在属性中找到路径。我怀疑它要么是空白的,要么文件真的不存在(正如例外所暗示的......)

在此处输入图像描述

于 2013-08-19T08:37:19.707 回答