I am currently using sqlite for a simple application. I just checked to see that the database is packed with the rest of the application. While this is certainly useful when taking a production app to development for updates, it is not as useful going from development to production.
Any suggestions on a good way to handle this? One obvious answer is to move the data into a database that is separate from the application. But if, for now, I want to keep things simple with sqlite, is there an easy way to eliminate sqlite from the packed application? Thanks.