如何获取 Invantive SQL 提供商的可用属性
How to get available attributes of an Invantive SQL provider
Invantive SQL 有多个提供程序可用。 Exact Online 有一些共享的提供者属性,例如 apiUrl
,但是如果不访问源代码,我如何确定可用的可配置提供者属性的完整列表?
有一个数据字典视图列表,其中包含有关可能性的更多详细信息。
例如,可以使用(首先连接到 password-less 'Dummy' 等任何提供程序)检索提供程序列表:
select *
from systemproviders
根据版本,您只能 select 当前连接的数据容器的可能属性,使用:
select *
from systemdatacontainerattributes
或使用
select *
from systemproviderattributes
Invantive SQL 有多个提供程序可用。 Exact Online 有一些共享的提供者属性,例如 apiUrl
,但是如果不访问源代码,我如何确定可用的可配置提供者属性的完整列表?
有一个数据字典视图列表,其中包含有关可能性的更多详细信息。
例如,可以使用(首先连接到 password-less 'Dummy' 等任何提供程序)检索提供程序列表:
select *
from systemproviders
根据版本,您只能 select 当前连接的数据容器的可能属性,使用:
select *
from systemdatacontainerattributes
或使用
select *
from systemproviderattributes