splitting database

  • Thread starter Thread starter vivian hornby
  • Start date Start date
V

vivian hornby

Is it a good idea to split the database if the forms are
bound. Right now this is just a single user sytem.
 
Splitting the database is good even if it is a single user system. The
backend usually sits on a server type machine and the frontend sits on the
user's machine. This is the model you want to implement if your database
becomes shared between two or more people. It also speeds up access to the
data.

If you are the only one using the database, then keeping it as one db is
okay for now.
 
Back
Top