程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> azure-如何驗證連接Azure storage是否成功?

azure-如何驗證連接Azure storage是否成功?

編輯:編程綜合問答
如何驗證連接Azure storage是否成功?

CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString);
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();

                            connectionString裡包含的是account和key信息,如何驗證這個賬戶是否有效,因為我後期要往這個Azure賬戶裡存數據。CloudTableClient裡面有哪個API可以驗證嗎?

最佳回答:


補充一下:使用工具可以排除code中一切異常,不失為一個選擇,當然code的方式也可以,如果account和key不正確的話,一般在下面的code就會出現異常,

 CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
    CloudConfigurationManager.GetSetting("StorageConnectionString"));

還需要提醒一下,中國版Azure Storage的連接字符串可能和你查到的資料中不一樣(國際版Azure),詳細請閱讀:http://www.cnblogs.com/ericwen/p/ChinaWindowsAzureStorageConnection.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved