Subject | Re: [firebird-support] Re: Is there a way to Version stamp a Firebird schema? |
---|---|
Author | Fidel Viegas |
Post date | 2008-03-24T09:31:15Z |
On Mon, Mar 24, 2008 at 4:37 AM, Alexandre Benson Smith
<iblist@...> wrote:
<iblist@...> wrote:
> Basically te same as Sean, but I have the information on a table calledThis is the approach I used to use in clipper. ;-D
> "config", that holds other informations about configuration... one of
> the is a records with a strinng called "DATABASE.VERSION".
>
> Every script we have in the first line update the value of that record
>
> Create Table Config (
> ConfigID integer PK
> Key varchar(40),
> Value varchar(255)
> );
>
> Something on this line...