My CRM server is having all the information in excel files.
In my iphone application, i’ve to download them, parse the data and store them in database (sqllite or coredata)
I’m aware of how to populate coredate or database. But I didn’t come across any library/framework that can parse excel files and extract data.
Is there any tutorial or 3rd party library for that?
My CRM server is having all the information in excel files. In my iphone
Share
Take a look at this answer
Read data from Excel file in Objective-C (iPhone)
Objective-C does not have native support for reading Excel files.
But, you do not need to use Objective-C to populate your database, only to run the app on the iPhone. You can use another scripting language (PHP, Ruby, Perl, etc.) to convert the Excel spreadhseets to tables in your database.
I would recommend doing the data transfer in Ruby using the spreadsheet gem. It is documented here
http://rubyforge.org/projects/spreadsheet