-
Problem varified with new test:
String strValue = null;
strValue = objMetadataPost.getSingleValue("createdBy");
assertNotNull(strValue);
assertEquals( "Window Azure SDK for Java",strValue );
strValue = objMetadataPost.getSingleValue("CREATEDBY");
assertNotNull(strValue);
assertEquals( "Window Azure SDK for Java",strValue );.
2009-11-13 13:21:27 UTC by jeff00seattle
-
Not a bug.
2009-11-13 13:17:26 UTC by jeff00seattle
-
I think there is some misunderstanding.
You should declare a public constructor for TableEntitySample as follows:
public TableEntitySample(String partitionKey, String rowKey)
You declare the constructor as protected, so the jvm does not allow our java
sdk to create an instance of this class.
2009-11-13 11:45:18 UTC by nobody
-
I think there is some misunderstanding. You should verify
assertEquals( "Window Azure SDK for Java",objMetadataPost.getSingleValue("createdBy") );
assertEquals( "Window Azure SDK for Java",objMetadataPost.getSingleValue("createdby") );
assertEquals( "Window Azure SDK for Java",objMetadataPost.getSingleValue("CREATEDBY") );
Instead of verifying...
2009-11-13 11:24:45 UTC by nobody
-
Got it to work.
Required reading MSDN article: Querying Tables and Entities.
http://msdn.microsoft.com/en-us/library/dd894031.aspx.
2009-11-12 02:06:00 UTC by jeff00seattle
-
Needs to know proper syntax for query expression string.
2009-11-11 16:14:50 UTC by jeff00seattle
-
Since this an exposed method with an unclear syntax for String queryExpression, it needs to be documented.
2009-11-10 14:58:32 UTC by jeff00seattle
-
Is there any documentation for AzureTable::retrieveEntities(String queryExpression)?
The provided example in previous comment is not clear:
"$filter=(partitionKey eq 'mypartitionkey1') ".
2009-11-10 14:57:07 UTC by jeff00seattle
-
Please look at it.
2009-11-09 22:48:35 UTC by yvesyang
-
Please take at it.
2009-11-09 22:46:33 UTC by yvesyang