-
Notifications
You must be signed in to change notification settings - Fork 3k
query_entities() doesn't work for retrieving data in unicode #57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Another user encountered Unicode issues and suggested a fix. We have a pull request pending at #60 Please let us know if that doesn't solve the encoding error you are getting. Thanks! |
weidongh
pushed a commit
to weidongh/azure-sdk-for-python
that referenced
this issue
Aug 29, 2012
weidongh
pushed a commit
to weidongh/azure-sdk-for-python
that referenced
this issue
Aug 29, 2012
tg-msft
pushed a commit
that referenced
this issue
Aug 29, 2012
Fixed the github issue #57: query_entities() doesn't work for retrieving data in unicode
This issue was closed.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I've encountered a problem when trying to retrieve data from a table which contains unicoded chars (hebrew in my case).
When using the get_entity() API on the table service, i had no problem getting the data correctly.
When using query_entities() on the same table with the same data i got an encoding error:
'ascii' codec can't encode characters in position 897-900: ordinal not in range(128)
Why should the output of query_entities() encounter an encoding problem when get_entity() doesn't?
Again, the table i've tested contains 1 row that has 1 column with a word in hebrew - get_entity() works, query_entities() fails.
The text was updated successfully, but these errors were encountered: