Hi, Jose.
It was told to me that all of
the forms that are created are unbound because there are data integrity
issues which arise when multiple users are using the same database.
Data integrity issues arise from unnormalized tables and when referential
integrity is not enforced on related tables. It's possible that referential
integrity cannot be enforced because tables within a relationship are linked.
When this is the case, "business logic" (i.e., application coding, such as
code behind the forms) is used to ensure referential integrity -- but there
is no guarantee that this will always work. Only the database engine can
guarantee that referential integrity is enforced. It's best to place all
related tables in the same database file so that the database engine can
control referential integrity, but this isn't always possible with large
tables, as Jet 4.0 has a maximum capacity of 2 GB. Hence, the linked tables
issue with referential integrity.
That said, data integrity issues usually come from unnormalized tables, but
when they're from referential integrity not being enforced, in the cases I've
seen, three out of four times it's because the database developer wasn't yet
skilled enough to know that referential integrity must be enforced.
Also as a side question, what are the pro and cons to using unbound forms as
opposed to bound forms.
Bound forms means that RAD can be used for quick application development and
programming maintenance. Since the fields are bound, record locking issues
may occur much more often than when using unbound forms. The record is
locked as soon as a user starts editing it, while with unbound forms, the
coding logic can ensure that the record is only locked during the update,
add, or delete operation. However, an adept database developer can avoid
most record locking problems, even in high concurrency/high usage
applications.
Unbound forms take a great deal more time to develop, because code needs to
be written (and tested) to provide the same functionality that bound forms
provide. Unbound forms that update/add/delete records are often used to
provide the business logic that will attempt to enforce data integrity, a
practice that isn't guaranteed to be successful.
However, since this is a new job, you need to be careful of stepping on
toes. Questioning the validity of a mission-critical application that may
have been built in-house where a lot of pride has been instilled in it may
not be in your best interest.
HTH.
Gunny
See
http://www.QBuilt.com for all your database needs.
See
http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/expert_contributors2.html for contact info.