Re: Dbase / foxpro files

2008-05-19 Thread Ethan Furman
Johny wrote: Thanks for your reply.Is it possible to delete a record by using the module? Thanks L> -- http://mail.python.org/mailman/listinfo/python-list It is possible with mine. To clarify an earlier post, my module is for dBase III and VFP 6.0 files only (those were the only two I neede

Re: Dbase / foxpro files

2008-05-17 Thread Johny
Thanks for your reply.Is it possible to delete a record by using the module? Thanks L> -- http://mail.python.org/mailman/listinfo/python-list

Re: Dbase / foxpro files

2008-05-16 Thread Ethan Furman
Johny wrote: Is there a module for reading/modifing db files from Python? Thanks for help B. -- http://mail.python.org/mailman/listinfo/python-list I'm switching my company's software base over from FoxPro 6 to Python. As part of that effort I have written (and am still enhancing :) a dbf.

Re: Dbase / foxpro files

2008-05-16 Thread Larry Bates
[EMAIL PROTECTED] wrote: look at http://pypi.python.org/pypi?%3Aaction=search&term=dbf&submit=search i use dbfpy That's another option. The caveat is that dbfpy specifically states that it only works on "simple" files. I'm pretty sure ODBC is universal. The nice thing about using ODBC is

Re: Dbase / foxpro files

2008-05-16 Thread martindesalinas
look at http://pypi.python.org/pypi?%3Aaction=search&term=dbf&submit=search i use dbfpy -- http://mail.python.org/mailman/listinfo/python-list

Re: Dbase / foxpro files

2008-05-15 Thread Larry Bates
Johny wrote: Is there a module for reading/modifing db files from Python? Thanks for help B. Just create a ODBC DataSource (Control Panel/Administrative Tools/ DataSources) and use ODBC to read/write. -Larry -- http://mail.python.org/mailman/listinfo/python-list

Re: Dbase / foxpro files

2008-05-15 Thread Claudio Driussi
Johny ha scritto: Is there a module for reading/modifing db files from Python? Thanks for help B. If your target is Windows, you can try mediator components http://www.otc.pl/download/ which are COM objects based on xHarbour and which give you full access to DBF and index. You need PythonWin

Re: Dbase / foxpro files

2008-05-15 Thread Johny
On May 15, 5:21 pm, John Machin <[EMAIL PROTECTED]> wrote: > Johny wrote: > > Is there a module for reading/modifing db files from Python? > > Thanks for help > > B. > > I have a module -- which I'm going to get around to releasing one of > these days :-) -- which allows to read dBase III, dBase IV

Re: Dbase / foxpro files

2008-05-15 Thread John Machin
Johny wrote: Is there a module for reading/modifing db files from Python? Thanks for help B. I have a module -- which I'm going to get around to releasing one of these days :-) -- which allows to read dBase III, dBase IV and Foxpro files (sequentially only, not randomly) and to write dBaseIII

Re: Dbase / foxpro files

2008-05-15 Thread Peter Otten
Johny wrote: > Is there a module for reading/modifing db files from Python? There is a recipe by Raymond Hettinger: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/362715 Peter -- http://mail.python.org/mailman/listinfo/python-list

Dbase / foxpro files

2008-05-15 Thread Johny
Is there a module for reading/modifing db files from Python? Thanks for help B. -- http://mail.python.org/mailman/listinfo/python-list