使用 ado.net 嵌入资源的指南
我正在寻找使用嵌入式资源来保存 SQL 脚本,然后通过 C# 中的某些执行读取器调用来执行它的指南。有人有很好的资源来阅读如何做到这一点吗?
I am looking for a guide to use embedded resources to hold a SQL script and then executing it via some execute reader call in C#. Does anyone have a good resource to read up on how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很容易。
您就已经完成了。您的资源将以字符串形式提供,名为 namespace.Properties.Resources.MyScript。只需将其用作
SqlCommand
、OleDbCommand
等的CommandText
属性即可。It's very easy.
You're pretty much done. Your resource will be available, as a string, named namespace.Properties.Resources.MyScript. Simply use it as the
CommandText
property of yourSqlCommand
,OleDbCommand
, etc.