开发者

Suggestions/advice on how to do personal development on a web-server (asp.net) - WRG to Database management during development

开发者 https://www.devze.com 2023-02-09 01:48 出处:网络
I am sure other people are doing this.. I am just seeking some advice on best ways of going about doing this.

I am sure other people are doing this.. I am just seeking some advice on best ways of going about doing this.

Problem: I have a web-server I am creating as a hobby - it supports my mobile apps. I have 2 machines I use to work on the code and because of that need to keep them in sync. I would prefer to work with a local DB for development, and then deploy the DB to the host when I want to publish the site. The problem is that with 2 machines, I am unsure how to keep the DBs in sync. What's more, I am really not that good with databases, and so I want something like the Schema comparer that comes with VS to allow me to sync the host DB with my local DB.

Here are the tools I have at my disposal: 1. Visual Studio 2010 2. Local SQL Express 3. Hosting server which allows me to use SQL. 4. Assembla/svn - I use that for my source control.

What I am currently doing: Instead of having a local DB, I use a remote DB on my host for development. The good thing about this is that I dont need to sync the DBs on my 2 machines (since I am using the开发者_如何学Python same remote one for development). The bad thing about this is that I cannot use the tooling that comes with VS to sync the schema because my host blocks certain properties that are needed on the source DB.

So.. How do you guys do this?


I do this by having schema maintenance in code - basically a lump of DDL (data definition language - i.e. SQL for mainting the schema) and by including a version table in the database.

You can then run code that says:

  1. If the database isn't there then create it with no schema other than the version table
  2. If the database is there then check the version number
  3. If the version is less than the current version then run that runs the queries that update the schema to the current version
  4. If the version is greater than the current version - stop and don't run the application.

Downside is a small amount of work to maintain the code. Upside is that it becomes trivially easy to keep your database schemas in sync.

I have a long example somewhere on here - I'll try and find it again when I have time.

0

精彩评论

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

关注公众号