如何通过 T-SQL 访问查看命令?
我希望能够以编程方式检索在 SQL Server 上生成视图的命令字符串。
我认为 ADOX 集合与 ADODB 连接一起使用,将允许我们通过目录/视图/命令属性来访问它。不幸的是,当通过 ADO 连接从 MS-Access 客户端连接到 SQL Server 时,“视图”集合不可用,这就是我们的情况(请参阅 无法将 ADOX 视图集合与 SQL Server 结合使用)。
我希望我现在可以找到一个 T-SQL 替代方案来解决这个问题。然后,我将能够通过 ADO 连接发送 T-SQL 指令,并在客户端收集相应的文本字符串。
I'd like to be able to retrieve programmatically the command strings that generate the views on our SQL Server.
I though the ADOX collection, used together with an ADODB connection, will allow us to access this through the catalog/view/command property. Unfortunately, the 'views' collection is not available when connecting from an MS-Access client to a SQL Server through an ADO connection, which is our case (see Cannot Use ADOX Views Collection with SQL Server).
I hope I could now find a T-SQL alternative to this problem. I will then be able to send the T-SQL instruction through my ADO connection, and collect the corresponding text string on my client side.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西吗?
马克
Something like this?
Marc