Developing a project with a multi developer environment.

R

Ramzi

Hi, is it posible for Developing a project with a multi developer working on
the same database at the same time?.



Thank's ...
 
A

Allen Browne

If you have multiple users in the database, you need to split it. You can
then work on your local copy of the front end while others are using their
own local copy (connected to the shared back end), and distribute the update
to them when you have it properly developed, debugged and tested.

If splitting is new, see:
Split your MDB file into data and application
at:
http://allenbrowne.com/ser-01.html
 
A

Albert D. Kallal

As mentioned, you first want to have split the database (Allen given you a
link to read about that).

Once you split, and have things running, then the next step is to allow more
then one developer.

You could have two copies, and make sure the developer ONLY words on a
particular form, or report..but, it hard to keep track of this...

The solution to this problem is achieved by using VSS 6 (visual source
safe). In other words, you need to adopt source code control if you need
more then one developer working at the same time.

Info link

http://support.microsoft.com/kb/837136/en-us


Download page for a2003:
http://www.microsoft.com/downloads/...f4-a916-48c5-8f84-44b91fa774bc&displaylang=en
 
Top