如何将 sql 服务器连接到 thingworx
How to connect sql server to thingworx
我研究了如何将 thingworx 与 sql 服务器或 postgre 连接以在 mashup gird 上显示数据。我发现我需要导入 MSSQLConnector_Extension,但我花了好几天时间才找到下载这些 jdbc 扩展的位置,但我在 ptcmarketplace 中找不到它。有没有人知道在哪里下载它或其他将 dbserver 连接到 thingworx 的方法。非常感谢
MSSQLConnector_Extension
适用于旧版本的 Thingworx。据我所知,从最新版本(即 Thingworx 8.0 或更高版本)开始,数据库连接器默认随 Thingworx 平台一起提供。
在 Thingworx 平台中,创建一个事物并在 Base Thing Template
字段下选择 Database
。保存事物实体后,将出现配置页面,您可以在其中配置 JDBC 设置。通过适当的 DB 特定配置,可以在 dbserver 和 thingworx 之间建立连接。
你也可以把SQL Server Details放在platform-setting.json中,这会把数据库直接连接到Thingworx并创建一个单独的数据库命名为“thingworx”,所有的数据都在Thingworx 进入那个特定的数据库。
"PersistenceProviderPackageConfigs": {
"PostgresPersistenceProviderPackage": {
"ConnectionInformation": {
"jdbcUrl": "jdbc:************/thingworx",
"password": "**************",
"username": "*****************"
}
}
}
我研究了如何将 thingworx 与 sql 服务器或 postgre 连接以在 mashup gird 上显示数据。我发现我需要导入 MSSQLConnector_Extension,但我花了好几天时间才找到下载这些 jdbc 扩展的位置,但我在 ptcmarketplace 中找不到它。有没有人知道在哪里下载它或其他将 dbserver 连接到 thingworx 的方法。非常感谢
MSSQLConnector_Extension
适用于旧版本的 Thingworx。据我所知,从最新版本(即 Thingworx 8.0 或更高版本)开始,数据库连接器默认随 Thingworx 平台一起提供。
在 Thingworx 平台中,创建一个事物并在 Base Thing Template
字段下选择 Database
。保存事物实体后,将出现配置页面,您可以在其中配置 JDBC 设置。通过适当的 DB 特定配置,可以在 dbserver 和 thingworx 之间建立连接。
你也可以把SQL Server Details放在platform-setting.json中,这会把数据库直接连接到Thingworx并创建一个单独的数据库命名为“thingworx”,所有的数据都在Thingworx 进入那个特定的数据库。
"PersistenceProviderPackageConfigs": {
"PostgresPersistenceProviderPackage": {
"ConnectionInformation": {
"jdbcUrl": "jdbc:************/thingworx",
"password": "**************",
"username": "*****************"
}
}
}