vote up 0 vote down star

Has anyone tried including Visual Foxpro Databases (ver 7) in SVN? What were the advantages/disadvantages of including it in? What is the best approach to handle VFP Db in SCM when there are rows that needs to be included in the source control?

flag

2 Answers

vote up 2 vote down

Christof Wollenhaupt has a tool called "TwoFox" that does a good job converting DBCs and other Fox source files to XML -- the article describing it is http://www.foxpert.com/docs/cvs.en.htm. If you're just asking about dropping the DBF files into SVN, though, you can import them as binary files, and lose the ability to compare/merge between versions, or use CURSORTOXML (that was in 7, wasn't it?) to convert the DBFs to XML before checking them in.

link|flag
vote up 1 vote down

Whilst I haven't used SVN, I have used VFP with both VSS and Vault. With both of these, I manually add files to source control, rather than trying to use some form of integration within the Dev environment.

There are basically two ways you could approach this:

  1. Just manually add the .DBC, .DCT, .DCX and all of the .DBF, .FPT and .CDX
  2. Write a script from the database to create the structure (I use a modified version of GenDBCX), and script creation of any data records you want to preserve on a program or class.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.