怎样用SQL语句或存储过程查找表中的自动递增字段(50分)

  • 主题发起人 主题发起人 oupj
  • 开始时间 开始时间
O

oupj

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样用SQL语句或存储过程查找表中的自动递增字段
 
fieldbyName()或fields.CanModified属性即可判断
 
学习中...........
 
如果是SQL Server,查找一下syscolumns表中的autoval不为空值的就是自动递增的字段了。
例如:
select object_name(id), * from syscolumns
where not (autoval is null)
 
CanModified属性不行,我试了
 
好象delphi不提供专门检测自动增量字段,fieldtype也就那么几类,canModify只能走走偏锋了
 
多人接受答案了。
 

Similar threads

后退
顶部