我正在使用以下代码遍历数据库列列表:
adapter = New SqlDataAdapter("SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '" & i & "'", connection)
Dim ds_cols As New DataSet
adapter.Fill(ds_cols)
For Each c As DataRow In ds_cols.Tables(0).Rows
'doing lots of things in here
Next
现在,我需要查询数据库(甚至更好地编辑现有数据库)以了解我正在分析的当前列是否是标识列。
谢谢