开发者

Version control (SVN) and managing sample data?

开发者 https://www.devze.com 2023-04-13 00:01 出处:网络
We\'ve developed a desktop application that collects measurements from a scientific instrument. The measurements are stored in a single SQLite database f开发者_如何学运维ile and some associated bina

We've developed a desktop application that collects measurements from a scientific instrument.

The measurements are stored in a single SQLite database f开发者_如何学运维ile and some associated binary data files.

The app ships with some sample data, so I've put the pre-populated files under revision control (we use Subversion/Ankh/Tortoise).

But now my co-worker is complaining that every time he does an Update on the project, any changes he may have made to the database get clobbered by the sample data database in the repository.

How can we manage this so:

  1. When we do a release, we can ensure the proper sample data from the repository is included.

  2. Between releases, our working copies of the database are not overwritten when we update our code from the repository.


Look at having data in the form of SQL scripts in your repo, managed through a database change management tool like dbdeploy

Version control is great with text files and not so with binaries. Anything that can be represented as text should be done so. And anything that can be generated through a build process - the dlls, jars, etc. and the db, should be artifacts of your build process and maintained outside your repo.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号