我正在尝试通过 aql 在 aerospike 中插入一条带有主键的新记录作为包含单引号(')的文本。但是,查询失败了。
这是查询:
insert into Namespace.set (PK, iRollNumber) VALUES('Hello\'s', 2)
我尝试了不同的格式来插入。但它没有奏效。
insert into Namespace.set (PK, iRollNumber) VALUES('Hello''s', 2)
insert into Namespace.set (PK, iRollNumber) VALUES('Hello\\'s', 2)
insert into Namespace.set (PK, iRollNumber) VALUES('Hello\\''s', 2)
和错误信息:
Un-supported command format with token - 's'
Type " aql --help " from console or simply "help" from within the aql-prompt.
给我适当的方法来克服这个问题。
谢谢你。