ADO.NET 中是否没有内置方法来获取表的架构?
我想按顺序获取表的架构。 这个问题及其答案正是我的问题,也是我想做的事情。然而,(对我来说)感觉很老套,而且现在已经两岁了,我希望答案已经过时了。难道真的还没有办法以原始顺序获取表的模式吗? (例如 ADOX 的 OpenSchema(adSchemaTables...)
)?
主观的附带问题:这不是 ADO.NET 中的一个巨大漏洞吗?
I want to get a table's schema in order. This question and its answer is exactly my question, and what I want to do. However it feels (to me) pretty hackish, and being two years old now I was hoping that the answer was out-of-date. Is there truly still no way to get a table's schema in its native order? (e.g. ADOX's OpenSchema(adSchemaTables...)
)?
Subjective side-question: is this not a huge gaping hole in ADO.NET in general!?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者
or
您可以在 Connection 对象上使用 GetSchema。
You can use GetSchema on the Connection object.