tags:

views:

242

answers:

1

How to Make Connection String In Cloud Storage Account For Watching Tables ,Blobs and Queues Please Give Me Best Sample Without configure Setting in Webrole Right Click Propertis.

+1  A: 

You don't create a connection string as such for Azure Cloud Storage, you access this service (same with blobs and queues) via an API, MS provide both a soap API and a REST API for this.

You shoud download the Windows Azure SDK for samples and tools (and the Azure Fabric if you want to test locally) you can get that Here.

SQL Azure is different, SQL Azure is "SQL Server in the Clouds" and for that service, you simply need a connection string, very much similar to a normal SQL Server connection string.

Tim Jarvis