in reply to Re: Re: Re: Re: Version Control in Database Applications
in thread Version Control in Database Applications
DELETE FROM Foo WHERE id = "1024" OR id = 1024,9" OR id = "1024,8"; UPDATE Foo SET id = "1024" where id = "1024,7";
What's wrong here? You say it's "nasty" but I don't see anything particularly bad about it.
The thing is, reversion is an uncommon operation. It can be a little hairy and nothing bad will happen. There will only be one place in the code handling reversion. However, linking between objects in join tables and general querying will happen all over the place. If that requires two columns per table for every join I know we'll have problems.
-sam
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Re: Re: Re: Version Control in Database Applications
by perrin (Chancellor) on Jun 11, 2002 at 03:18 UTC | |
by samtregar (Abbot) on Jun 11, 2002 at 05:03 UTC | |
by cowens (Beadle) on Jun 11, 2002 at 14:29 UTC | |
by samtregar (Abbot) on Jun 11, 2002 at 17:29 UTC | |
by cowens (Beadle) on Jun 12, 2002 at 16:58 UTC | |
|