简体   繁体   English

如何获取Invantive SQL提供程序的可用属性

[英]How to get available attributes of an Invantive SQL provider

There are several providers available for Invantive SQL. 有几种Invantive SQL可用的提供程序。 There are some shared provider attributes like apiUrl for Exact Online, but how can I without access to the source code determine the full list of configurable provider attributes available? 有一些共享的提供程序属性,例如apiUrl for Exact Online,但是如何在不访问源代码的情况下确定可用的可配置提供程序属性的完整列表?

There is a list of data dictionary views which contains more details on the possibilities. 有一个数据字典视图列表,其中包含有关可能性的更多详细信息。

For instance the list of providers can be retrieved using (connect first to any provider like the password-less 'Dummy'): 例如,可以使用检索提供者列表(首先连接到任何提供者,例如无密码的“虚拟”):

select * 
from   systemproviders

Depending on release you can only select the possible attributes for the currently connected data containers using: 根据发行版的不同,您只能使用以下方法为当前连接的数据容器选择可能的属性:

select * 
from   systemdatacontainerattributes

Or use 或使用

select * 
from   systemproviderattributes

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Invantive Control for Excel 中的 SQL 错误 - SQL error in Invantive Control for Excel 如何在Invantive Excel加载项中包含对表的引用 - How to Include a reference to a table in Invantive Excel add-in 使用Invantive SQL分析API调用的数据量 - Analyze data volume of API calls with Invantive SQL 在Invantive SQL中使用分布式查询时,请选择Exact Online的不同部门 - Choose different division of Exact Online when using distributed query with Invantive SQL 使用Invantive Data Hub更改分布式数据库中的所选SQL Server数据库 - Change chosen SQL Server database in distributed database with Invantive Data Hub Invantive SQL中来自Exact Online的内部汇率的项目报告 - Project Report with internal rate from Exact Online in Invantive SQL 使用Invantive在Exact Online上手工制作的OData查询 - Handcrafted OData queries on Exact Online with Invantive 如何在Invantive Control Excel加载项中包含对表的引用的Excel公式 - How to include an Excel formula with a reference to a table in Invantive Control Excel add-in 如何使用Invantive Query Tool从Exact Online下载我的采购发票文档? - How do I download only my purchase invoice documents from Exact Online with Invantive Query Tool? 在Invantive Control for Excel中同步模型时,出现错误“找不到名称为'P_SCHEME_CODE'的参数” - When syncing my model within Invantive Control for Excel I get the error "Could not find parameter with name 'P_SCHEME_CODE'
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM