Amazon Simple DB select from domain with period in name



在amazon simpleDB中,我使用客户名称作为桶名模板。buckname = com.mycompany.projectname.customerId作为simpledb域名。

但是,使用simpledb select API执行

,成功创建了域。

select * from com.mycompany.projectname.customerId

我收到400错误:

AWS Error Code: InvalidQueryExpression, AWS Error Message: 
The specified query expression syntax is not valid.

这个select语句可以转义吗?或者我们应该使用另一种域名命名策略吗?

将域名括在大写(')之间。试着运行这个查询:

select * from `com.mycompany.projectname.customerId`

相关内容

  • 没有找到相关文章

最新更新