使用boto从amazon simpledb中选择itemName()

时间:2012-07-23 11:45:40

标签: amazon-simpledb boto

我正在尝试使用boto从simpleDB select查询中获取itemName(),但是select itemName() from domain where attribute = 'foo' limit 10为我提供了一个包含10个项目的结果集,但它们都是空的。

我还尝试了select `itemName()` from domain where attribute = 'foo'select itemName from domain where attribute = 'foo'

1 个答案:

答案 0 :(得分:5)

返回的Item对象为空,因为您不要求查询中的任何属性。 itemName实际上不是一个属性。它作为特殊值存储在Item对象上,可以作为item.name。

访问