Azure table save request

when I send data and query a table with a database like: dev datastorage (emulator), it works.

When I publish a data table with data in an Azure database (there is an account), it works. When I get data from a table with data in an Azure database (there is an account), it does not work.

In both cases, the code is the same. In addition to keys and credentials.

Should I do anything to request?

var query = azure.TableQuery .select().from('dummytable').where('PartitionKey eq ?', key); 

Can anyone suggest why Query is not working. should there be anything else to do

From Storage Explorer it works, I can see objects. Only from the program I can not get an answer. But "PUT" works in the same program.

+4
source share
3 answers

The same thing happened to me .. made an update from the azure package npm 0.6.1 to 0.6.7 and now works, I hope this helps.

+1
source

I would look at the value that is on your key. There are some values ​​that are not listed in the list of invalid characters that Azure is associated with. For example, before SDK 1.7, you can safely insert% into the key, but if you requested it specifically, this will not work. To check if this is a problem, try running a query but without a filter and make sure your string is returned.

0
source

After reading the msdn mailing lists, I updated the azure npm number with the latest package 0.6.7 and it works. seems to be a problem with azure

0
source

All Articles