Quickbooks SQL 转储来自 QODBC 的代码

发布于 2024-08-13 19:42:06 字数 104 浏览 2 评论 0原文

我需要提取 Quickbooks SQL 结构来制作有关我需要使用的表的图表。这可能吗? 我认为 QODC 可以解决我的连接问题,但我不知道如何从中提取 SQL 转储。

提前致谢

I need to extract Quickbooks SQL structure to make a Diagram about the tables that I need to work with. Could this be possible ?
I think QODC could solve my connection issue but I don't know how to extract SQL dump from it.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

尬尬 2024-08-20 19:42:06

您无法直接访问 QuickBooks SQL 结构,所以您运气不好。大多数版本的 QuickBooks 甚至都不基于 SQL 后端(只有企业版),因此它甚至不适用于这些版本。

QuickBooks 提供基于 XML 的 API 来添加/修改/查询/删除其中的数据,但不提供直接的 SQL 访问。 QODBC 是基于 XML 的 API 的包装器,它只是将 XML 请求转换为 SQL 请求,反之亦然。它不是对任何东西进行逆向工程,它只是将数据从一种格式/协议转换为另一种格式/协议。

您可以选择按原样使用 XML API、使用 QODBC,或者使用 XML API 并通过将 XML 转换为 SQL 友好格式来执行与 QODBC 类似的操作。我对我的 PHP 代码、架构和下面链接的代码做了类似的事情:

You can't directly access the QuickBooks SQL structure, so you're out of luck. Most versions of QuickBooks are not even based on an SQL backend (only Enterprise edition is), so it's not even applicable to those versions.

QuickBooks provides an XML-based API to adding/modifying/querying/deleting data within it, but does not provide direct SQL access. QODBC is a wrapper around the XML-based API which simply transforms XML requests into SQL requests, and vice versa. It is not reverse-engineering anything, it's simply transforming data from one format/protocol, into another.

You choices are to either use the XML API as is, use QODBC, or use the XML API and do something similar to what QODBC is doing by transforming the XML into an SQL-friendly format. I've done something similar with my PHP code, schema and code linked below:

别想她 2024-08-20 19:42:06

您可以安装 QODBC,然后在 Sql Server Mgmt Studio 中设置链接表。
从那里,您或多或少可以将 QuickBooks 中的表查询到 SQL Svr 数据库中的表中。

You can install QODBC, then setup a linked table in Sql Server Mgmt Studio.
From there, you can more or less query the tables out of QuickBooks into tables in a SQL Svr database.

执着的年纪 2024-08-20 19:42:06

QuickBooks Enterprise 2011 改变了这一情况,您可以拥有真正的 ODBC 访问(尽管权限有限且表数量有限),然后使用 SQL 工具通过 ODBC 访问进行映射。

With QuickBooks Enterprise 2011 this changed, and you can have real ODBC access (although with limited rights and to a limited amount of tables) and then use an SQL tool to map via the ODBC access.

不爱素颜 2024-08-20 19:42:06

QODBC 在此处发布其公开的所有表的数据布局。如果您想将 QuickBooks 屏幕上的字段与表格关联起来,这种格式非常好,这通常是 QuickBooks 集成设计过程中所需要的。

QODBC publishes data layouts for all of the tables it exposes here. The format is really nice if you want to correlate a field on the QuickBooks screen to a table, which is usually what you need in a QuickBooks integration design process.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文