Re: Combining python and sqlite DB into a single, "executeable".

2009-10-07 Thread Roger Binns
[Please do not email me *and* the list - it is highly annoying] Tom Cumming wrote: > Thanks!, but I already thought of your suggestion. I've already gotten > the clear impression that the amount of work to implement this is more than > the ROI. It isn't anywhere near as hard or as much work as y

Re: Combining python and sqlite DB into a single, "executeable".

2009-10-07 Thread Tom Cumming
Thanks!, but I already thought of your suggestion. I've already gotten the clear impression that the amount of work to implement this is more than the ROI. Having said that, it might work if on exiting the app could re-zip itself. One _big_ problem with zip files or compiled python executables

Re: Combining python and sqlite DB into a single, "executeable".

2009-10-06 Thread Roger Binns
tcumming...@gmail.com wrote: > The problem, is that I need the python app and the > sqlite db file to exist in the same disk file. This way the app to > access the data and the data are in the same file. For binaries this is possible with a little hackery. Firstly you need make the app be a zip f

Re: Combining python and sqlite DB into a single, "executeable".

2009-10-06 Thread Philip Semanchuk
On Oct 6, 2009, at 7:28 PM, tcumming...@gmail.com wrote: Ya, I thought of that... However... - It would be nice to be able to execute it directly (i.e,. click on it). You can't, "execute" a directory. - It would be more work to send as an email attachment. - I thought it was a cool

Re: Combining python and sqlite DB into a single, "executeable".

2009-10-06 Thread tcumming123
Ya, I thought of that... However... - It would be nice to be able to execute it directly (i.e,. click on it). You can't, "execute" a directory. - It would be more work to send as an email attachment. - I thought it was a cool idea, and had hoped someone else had figured out how to d

Re: Combining python and sqlite DB into a single, "executeable".

2009-10-06 Thread Che M
On Oct 6, 5:31 pm, Robert Kern wrote: > On 2009-10-06 16:16 PM, tcumming...@gmail.com wrote: > > > Any body got any ideas how to do the following... > > > I would like to be able to write an app in python that keeps it's > > persistent data in a sqlite database file. > > > So far so good. The prob

Re: Combining python and sqlite DB into a single, "executeable".

2009-10-06 Thread Robert Kern
On 2009-10-06 16:16 PM, tcumming...@gmail.com wrote: Any body got any ideas how to do the following... I would like to be able to write an app in python that keeps it's persistent data in a sqlite database file. So far so good. The problem, is that I need the python app and the sqlite db file t

Combining python and sqlite DB into a single, "executeable".

2009-10-06 Thread tcumming123
Any body got any ideas how to do the following... I would like to be able to write an app in python that keeps it's persistent data in a sqlite database file. So far so good. The problem, is that I need the python app and the sqlite db file to exist in the same disk file. This way the app to acce