Click here to Skip to main content
15,899,124 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am taking xls or xlsx file from user and Saved it on blob. Now I want after saving i should read that file and convert excel to data Set?? How to do this??
Posted
Comments
Girish Jawale 19-May-11 3:52am    
Hi SAKryukov,
I have gone through the link which you have provided but solution mentioned there are using System.Data.OleDb.OleDbConnection for connect to Excel.Its work fine with normal .net, but Jet Engine (and Office) is not installed on the cloud machines
(See this http://social.msdn.microsoft.com/Forums/hu-HU/windowsazure/thread/8dd98575-c5c1-4f7c-bd7b-f9432efec577 )
. I have tried using
string conn = "Provider=Microsoft.ACE.OLEDB.12.0; Data Source=" + uploadFileURI + "; Extended Properties=Excel 12.0;";
but its throws an error. Still am searching how to read the excel file which is at Azure storage. :(

Maybe this[^] can be of some assistance as well.
 
Share this answer
 
See this: http://social.msdn.microsoft.com/Forums/en/vsto/thread/b6e8a28c-6760-4e86-a1aa-e2ce9ec36380[^].

You will find tons of documentation if you Google for it.
You can start from here: http://msdn.microsoft.com/en-us/library/ms186213(v=VS.90).aspx[^].

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900