When calling DAL(connection_string, ...) there is a folder keyword argument wich specifies the path where the database files will be stored, so you can separate the files from the app source. I think that this eliminates the problem of having to erease the database app folder each time you pack the project again.
On Dec 1, 10:05 pm, Carlos Hanson <[email protected]> wrote: > 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.

