检索数据集中的数据库结构

发布于 2024-11-03 03:53:56 字数 56 浏览 1 评论 0原文

有人可以告诉我如何使用主键列检索数据集中的数据库结构或获取不允许空值的列

吗...

Can some one tell me how retrieve database structure in dataset with primary key columns or get the columns that not allow nulls

thanx...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

べ繥欢鉨o。 2024-11-10 03:53:56

您可以在大多数 RDBMS 中使用以下 select 来获取满足某些条件的列

SELECT * 
FROM information_schema.COLUMNS 
WHERE IS_NULLABLE = 'no'

You may use following select in most RDBMS to get columns satisfying some condition

SELECT * 
FROM information_schema.COLUMNS 
WHERE IS_NULLABLE = 'no'
小嗷兮 2024-11-10 03:53:56

感谢所有有人在另一个论坛上回答我的

答案

scmd=new SqlCommand("select * from AdminUser",scon);
        scon.Open();

    sdr = scmd.ExecuteReader(CommandBehavior.KeyInfo);
    sdr.Read();
    dt = sdr.GetSchemaTable();
    scon.Close();

Thanx all some one answer me in another forum

the answer

scmd=new SqlCommand("select * from AdminUser",scon);
        scon.Open();

    sdr = scmd.ExecuteReader(CommandBehavior.KeyInfo);
    sdr.Read();
    dt = sdr.GetSchemaTable();
    scon.Close();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文