Amazon Simple DB 从名称中带有句点的域中选择

发布于 2024-11-18 20:33:25 字数 429 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半衬遮猫 2024-11-25 20:33:25

将域名括在锐角 ie (`) 之间。尝试运行此查询:

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

Enclose domain name between acute i.e (`). Try to run this query :

select * from `com.mycompany.projectname.customerId`
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文