osql.exe 可以独立运行吗?
我有一个程序,可以从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的你可以。 只需复制二进制文件即可。
Yes, you can. Just copy the binary and off you go.
为什么要生成 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 withGO
statements in it.