is a
Relational Database Management System from
Microsoft , packaged with
Microsoft Office Professional which combines the relational
Microsoft Jet Database Engine with a
Graphical User Interface . It can use
Data stored in Access/Jet,
SQL Server ,
Oracle , or any
ODBC -compliant data container. Skilled
Software Developer s and
Data Architect s use it to develop powerful, complex
Application Software . Relatively unskilled
Programmer s and non-programmer "power users" can use it to build simple applications without having to deal with features they don't understand. It supports substantial
Object-oriented (OO) techniques but falls short of being a fully OO development tool.
was also the name of a communications program from Microsoft, meant to compete with
ProComm and other programs. It proved a failure and was dropped. Years later they reused the name for their database software.
Access is widely used by small businesses, within departments of large corporations, and hobby programmers to create
Ad Hoc customized systems for handling the creation and manipulation of data. Its ease of use and powerful design tools give the non-professional programmer a lot of power for little effort. However, this ease of use can be misleading. This sort of developer is often an office worker with little or no training in application or data design. Because Access makes it possible even for such developers to create usable systems, many are misled into thinking that the tool itself is limited to such applications.
Some professional application developers use Access for
Rapid Application Development , especially for the creation of prototypes and standalone applications that serve as tools for on-the-road salesmen. Access does not
Scale well if data access is via a network, so applications that are used by more than a handful of people tend to rely on a Client-Server based solution such as
Oracle ,
DB2 ,
Microsoft SQL Server ,
PostgreSQL ,
MySQL ,
MaxDB , or
Filemaker . However, an Access "front end" (the forms, reports, queries and
VB code) can be used against a host of database backends, including Access itself, SQL Server, Oracle, and any other
ODBC -compliant product. This approach allows the developer to move a matured application's data to a more powerful server without sacrificing the development already in place.
Many developers who use Microsoft Access use the
Leszynski Naming Convention , though this is not universal; it is a programming convention, not a DBMS-enforced rule.
One of the benefits of Access from a programmer's perspective is its relative compatibility with
SQL – queries may be viewed and edited as SQL statements, and SQL statements can be used directly in Macros and VBA Modules to manipulate Access tables. Users may mix and use both
VBA and "Macros" for programming forms and logic and offers object-oriented possibilities.
- Early versions of MSDE and Microsoft Exchange Server actually use the Jet engine to handle huge volumes of data and placed a "fake" application layer for those applications on top of it. Lack of knowledge about this fact has contributed to an undeserved disrespect for Access/Jet family of software products, particularly as regards "large" projects.)
Access' cut and paste functionality can make it a useful tool for connecting between other databases (for example, Oracle and Microsoft SQL Server during data or database conversions). Access comes with various import and export features that allow integration with Windows and other platform applications, several of which can be executed on demand from within applications or manually by the user. For example the very compact SNP format for sharing perfectly formatted reports with people who don't have the full Access software. It can also easily be upgraded to Microsoft SQL Server.
Unlike complete RDBMS's, it lacks
Database Trigger s and
Stored Procedure s. It does allow forms to contain code that is triggered as changes are made to the underlying table, and it is common to use pass-through queries and other techniques in Access to run stored procedures in
RDBMS s that support these.
The programming language available in Access is, as in other products of the (DAO), only available with Access, and the new
ActiveX Data Objects (ADO).
Microsoft Access is easily applied to small projects but
Scales inefficiently to large projects if applications are designed poorly.
All database queries, forms, and reports are stored in the database, and in keeping with the ideals of the relational model, there is no possibility of making a physically structured hierarchy with them.
One design technique is to divide an Access application between data and programs. One database should contain only tables and relationships, while another would have all programs, forms, reports and queries, and links to the first database tables. Unfortunately, Access allows no relative paths when linking, so the development environment should have the same path as the production environment (Although you can write your own "dynamic-linker" routine in
VBA that can search out a certain back-end file by searching through the directory tree, if it can't find it in the current path).
This technique also allows the developer to divide the application among different files, so some structure is possible.
- "Database Design for Mere Mortals" by Michael J. Hernandez
- "Access Database Design & Programming" by Steven Roman
- "Access 2002 Developer's Handbook™ Set By Paul Litwin; Ken Getz; Mike Gunderloy
- "Succeeding in Business with Microsoft Office Access 2003: A Problem-Solving Approach" by Karin Bast, Leon Cygman, Gerard Flynn, Rebekah Tidwell
- "Access 2003 VBA Programmer's Reference" by Patricia Cardoza, Teresa Hennig, Graham Seach, Armen Stein
- "SQL Access to SQL Server" Published by Apress - Susan Sales Harkins and Martin WP Reid
- "Mastering Microsoft Office Access 2003" Published by Sams - Alison Balter's