通过脚本创建表如何运行脚本

发布于 2024-09-15 05:49:37 字数 217 浏览 6 评论 0原文

我有几个需要在数据库上运行的脚本。所以我有几个问题。

在打开数据库连接时,我只是使用 Connection、CommandText、CommandType 和 CommandTimeout。

第一个问题 - 有谁知道通过这种方法,我是否可以创建永久表,而不是临时表?

其次 - 我将如何运行这个文件?我可以将文件设置为参数,然后在查询中运行该参数吗?

谢谢

Ive got a couple of scripts that I need to run on my databse. So I have a few questions.

Im simply using Connection, CommandText,CommandType and CommandTimeout when opening a connection to the databse.

First question - Does anyone know if through this method, I can create permantent tables, not temporary tables?

Secondly - How would I run this file? Could I just set the file to be a parameter, and in the query run the parameter?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

怀中猫帐中妖 2024-09-22 05:49:37

您可以在 .NET SQL 连接中执行可以在 SQL 脚本中执行的任何操作。至于“运行文件”,您需要将文件文本加载到内存中并将加载的文本作为单个命令执行。

我们在应用程序中做了类似的事情。我们的数据库脚本存储在SQL脚本中。我们将每个文件按顺序从磁盘加载到内存中并执行它。

You can do anything in a .NET SQL connection that you could do in a SQL script. As far as "running a file", you would need to load the file text into memory and execute the loaded text as a single command.

We do something similar in our application. Our database scripts are stored in SQL scripts. We load each file sequentially from disk into memory and execute it.

执笏见 2024-09-22 05:49:37

在 C# 中--

  1. 您可以通过这种方式创建永久表和临时表。

  2. 作为命令对象的 CommandText 运行脚本。

In C#--

  1. You can create both permanent and temporary tables this way.

  2. Run the script as the CommandText of a command object.

岁月苍老的讽刺 2024-09-22 05:49:37

来自 MSDN 的示例:如何在查询中设置参数,

private static void UpdateDemographics(Int32 customerID,
    string demoXml, string connectionString)
{

    string commandText = "UPDATE Sales.Store SET Demographics = @demographics "
        + "WHERE CustomerID = @ID;";

    using (SqlConnection connection = new SqlConnection(connectionString))
    {
        SqlCommand command = new SqlCommand(commandText, connection);
        command.Parameters.Add("@ID", SqlDbType.Int);
        command.Parameters["@ID"].Value = customerID;

        command.Parameters.AddWithValue("@demographics", demoXml);

        try
        {
            connection.Open();
            Int32 rowsAffected = command.ExecuteNonQuery();
            Console.WriteLine("RowsAffected: {0}", rowsAffected);
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
    }
}

Example From MSDN : How to set parameters in the Query,

private static void UpdateDemographics(Int32 customerID,
    string demoXml, string connectionString)
{

    string commandText = "UPDATE Sales.Store SET Demographics = @demographics "
        + "WHERE CustomerID = @ID;";

    using (SqlConnection connection = new SqlConnection(connectionString))
    {
        SqlCommand command = new SqlCommand(commandText, connection);
        command.Parameters.Add("@ID", SqlDbType.Int);
        command.Parameters["@ID"].Value = customerID;

        command.Parameters.AddWithValue("@demographics", demoXml);

        try
        {
            connection.Open();
            Int32 rowsAffected = command.ExecuteNonQuery();
            Console.WriteLine("RowsAffected: {0}", rowsAffected);
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文