I have a Mac application with an SQlite DB. I would like a simple method to export a recordset to a file that can be read into excel. (e.g CSV)
I do not not have or want to pay for Plugins.
Thanks
Jim
I have a Mac application with an SQlite DB. I would like a simple method to export a recordset to a file that can be read into excel. (e.g CSV)
I do not not have or want to pay for Plugins.
Thanks
Jim
You don’t need a plugin for this. Create a method that iterates your database, and for each record concatenate a string separated by commas. For text fields wrap them in quotes, numeric fields no quotes etc. Write the string to an open text file with the extension .csv.
Be advised this may not work for Excel without a few other things, if that’s your target. A few gotchas…
Thanks
Will try the suggestions