Hi,

I think you may have trouble with cvs since it is not really ACID
transactional.  On the other hand, lots of people use mysql.

If your data fits reasonably well in a rdbms, you may be able to do
something like this:

For each table T, have another table V_T with the same columns + a new
abstract id column.  On T, place before update and before delete triggers
that insert the current data into V_T, together with a newly obtained
abstract id.  The administrator can revert by updating a T row with a V_T
row.

This does not save space by using diffs, that may not be a problem with
current disk prices. 

Does this address your question?

david jencks
On 2001.06.07 00:54:08 -0400 Paula Turnbull wrote:
> 
> Hi all, I am new to JBoss and to J2EE. I am wondering if it is possible
> to
> implement some sort of version control on application data on the server?
> The application will have multiple clients and I need to maintian version
> control so the site administrator can rollback to previous versions of
> data
> that has been modified by one or more of these clients. Is it possible to
> integrate a third party system such as CVS? Or would I have to implement
> this myself?
> 
> Thanks, 
> Paula
> 
> ***********************************************************
> Paula Turnbull
> Java Programmer
> Centre for Pest Information Technology and Transfer (C-PITT)
> Hartley Teakle Building
> The University of Queensland
> Brisbane QLD 4072 Australia
> 
> Email:        [EMAIL PROTECTED]
> Telephone: +61 7 3365 1840
> Facsimile:  +61 7 3365 1855
> 
> www.cpitt.uq.edu.au
> www.lucidcentral.com
> 
> NOTICE - This message contains information intended only for the use of
> the
> addressee named above.  It may also be confidential and/or privileged. 
> If
> you are not the intended recipient of this message you are hereby
> notified
> that you must not disseminate, copy or take any action in respect to it. 
> If
> you have received this message in error please notify Centre for Pest
> Information Technology & Transfer immediately via
> mailto:[EMAIL PROTECTED]
> 
> 
> _______________________________________________
> JBoss-user mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-user
> 


_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to