通过脚本创建表如何运行脚本
我有几个需要在数据库上运行的脚本。所以我有几个问题。
在打开数据库连接时,我只是使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在 .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.
在 C# 中--
您可以通过这种方式创建永久表和临时表。
作为命令对象的 CommandText 运行脚本。
In C#--
You can create both permanent and temporary tables this way.
Run the script as the CommandText of a command object.
来自 MSDN 的示例:如何在查询中设置参数,
Example From MSDN : How to set parameters in the Query,