针对SQL Server 数据库,restrictionValues的长度为4,其中restrictionValues[0]为Catalog(数据库名),restrictionValues[1]为Owner(所有者),restrictionValues[2]为Table(表名),restrictionValues[3]为Column(列名)。 我们要查询某张表中的列名等信息,则可以通过设置restrictionValues[2]="SomeTableName"来实现。 实现代码...