osql.exe 可以独立运行吗?

发布于 2024-07-08 03:39:18 字数 176 浏览 6 评论 0原文

我有一个程序,可以从 microsoft sql server 工具目录运行 osql.exe 并运行脚本。

问题是在没有安装sql server的计算机上,缺少这个工具。 所以我的问题是是否可以将其作为独立运行(以及可能需要的任何 dll),这意味着从应用程序的本地目录的 Process.Start 运行它们。

I have a program that runs osql.exe from microsoft sql server tools directory and runs a script.

The problem is that on computers that don't have an installation of sql server, this tool is missing. So my question is whether or not is possible to run it as a standalone( along with any dll that may be required ) meaning that run them from Process.Start from a local directory of the application.

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

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

发布评论

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

评论(2

痞味浪人 2024-07-15 03:39:18

是的你可以。 只需复制二进制文件即可。

Yes, you can. Just copy the binary and off you go.

素食主义者 2024-07-15 03:39:18

为什么要生成 osql?

我编写了简单的程序来使用 SMO 执行脚本 - 主要是受到 这篇文章

编辑

帖子的要点是使用SQL Server管理对象(SMO)Server.ConnectionContext.ExecuteNonQuery 使用其中的 GO 语句解析 SQL。

Why are you spawning osql?

I've written simple programs to execute scripts using SMO - mostly insired by this post.

EDIT

The jist of the post is to use SQL Server Management Objects (SMO). Server.ConnectionContext.ExecuteNonQuery parses SQL with GO statements in it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文