gpt4 book ai didi

c# - 在 C# 中获取一张表的架构

转载 作者:可可西里 更新时间:2023-11-01 08:17:43 24 4
gpt4 key购买 nike

我想在 SQL SErver 中获取名为“Petro”的表的架构初始化 connectionString 后,我使用这段代码

conn.open();
conn.getSchema("Tables");

但它返回所有表的架构。我只想要石油模式。我该怎么办?

最佳答案

string[] restrictions = new string[4];
restrictions[2] = "Petro";
DataTable table = conn.GetSchema("Tables",restrictions);

查看此处了解更多信息:MSDN: Working with the GetSchema Methods

编辑:使用 GetSchema 而不是 getSchema

关于c# - 在 C# 中获取一张表的架构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11169345/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com