使用C ++ Builder的Steema TeeBI

时间:2018-03-02 10:15:58

标签: teechart

我试图在RADStudio 10.2.2中使用Steema TeeBI商业智能框架和Embarcadero C ++ Builder。 转换此页面中的Delphi示例: http://teechart.net/docs/teebi/tutorials/Using-the-API/

当我尝试翻译这一行时:

{
  "id": 1,
  "title": "abc123",
  "isbn": "0001122223334",
  "copies": 5,
  "updated_at": "2018-03-02T09:17:24.546Z",
  "created_at": "2018-03-02T09:17:24.546Z",
  "authors": [
    {
      "id": 1,
      "first": "a",
      "last": "a",
      "book_id": 1,
      "updated_at": "2018-03-02T09:22:07.115Z",
      "created_at": "2018-03-02T09:22:07.115Z"
    }
  ]
}

进入这一行

Customers['CustomerID'].Int32Data[0] := 1;

我遇到这个错误:

  

E2034无法转换&#char; char const [11]'到' int'

但这有效:

Customers["CustomerID"]->Int32Data[0] = 1; // Error

有人可以重现这种情况并修复Steema中的这个错误吗? 谢谢。

0 个答案:

没有答案