Amazon Simple DB 从名称中带有句点的域中选择
在 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 语句是否可以以某种方式转义,或者我们应该使用备用域名策略?
In amazon simpleDB I am using the customer name as a bucket name template.
buckname = com.mycompany.projectname.customerId as the simpledb domain name.
The domain is created sucessfully, however, using the simpledb select API to do
select * from com.mycompany.projectname.customerId
I receive the 400 error:
AWS Error Code: InvalidQueryExpression, AWS Error Message:
The specified query expression syntax is not valid.
Can this select statement be escaped somehow, or should we use an alternate domain naming strategy?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将域名括在锐角 ie (`) 之间。尝试运行此查询:
Enclose domain name between acute i.e (`). Try to run this query :