我正在使用 PHP Azure 表存储 REST API,当我使用分区键以外的任何其他列过滤数据集时,它给了我唯一的错误
如果我使用以下过滤条件,它可以正常工作。
((PartitionKey ge '2013110100') and (PartitionKey le '2013110223'))
如果我添加除分区键以外的任何其他列,则会出错。例如,当我使用下面的过滤器时,它会产生错误
((PartitionKey ge '2013110100') and (PartitionKey le '2013110223') and (cid <> '11081'))
它说 Call to a member function getEntities() on a non-object 。
try {
$result = $tableRestProxy->queryEntities("mytable", $filter);
}
catch(ServiceException $e){
// Handle exception based on error codes and messages.
// Error codes and messages are here:
// http://msdn.microsoft.com/en-us/library/windowsazure/dd179438.aspx
$code = $e->getCode();
$error_message = $e->getMessage();
echo $code.": ".$error_message."<br />";
}
$entities = $result->getEntities();
我正在使用教程http://www.windowsazure.com/en-us/develop/php/how-to-guides/table-service/中提供的逻辑