DolphinDB数据类型转换问题

时间:2019-10-23 10:50:26

标签: types dolphindb

我遇到了以下脚本的问题:

id = id$symbol

其中id是一个字符串列。我收到以下错误消息:

Please specify correct data type e.g. a$int (convert variable 'a' to integer type)

这很奇怪,因为我之前多次运行此行,直到它通过,而且我最近还没有更新DolphinDB数据库。有人知道这是怎么回事吗?

1 个答案:

答案 0 :(得分:1)

我认为您可能在此脚本之前的某个位置定义了变量“ symbol”。

我可以使用以下脚本复制您的问题:

>id=`AA`BB`CC
>symbol=0;
>id$symbol;
Please specify correct data type e.g. a$int (convert variable 'a' to integer type)

因此,只需检查您的代码,避免使用表示数据类型的单词作为变量名。