Skip to Content
Access Database Design and Programming, Second Edition
book

Access Database Design and Programming, Second Edition

by Steven Roman PhD
July 1999
Intermediate to advanced
432 pages
13h 10m
English
O'Reilly Media, Inc.
Content preview from Access Database Design and Programming, Second Edition

The CurrentDb Function

We have seen that DAO refers to the current database as:

DBEngine.Workspaces(0).Databases(0)

or, through default collections, as:

DBEngine(0)(0)

However, within Microsoft Access, there is a preferred way to refer to this database, since, unlike DBEngine(0)(0), it is always current with respect to changes made using the Access graphical interface. This preferred way is to use the Access function CurrentDb. Unfortunately, there is some confusion as to precisely what this function does.

Here is part of what the Access Help system says about this function:

The CurrentDb function returns an object variable of type Database that represents the database currently open in the Microsoft Access window.

The CurrentDb function provides a way to access the current database from Visual Basic code without having to know the name of the database. Once you have a variable that points to the current database, you can also access and manipulate other objects and collections in the data access object hierarchy.

You can use the CurrentDb function to create multiple object variables that refer to the current database. In the following example, the variables dbsA and dbsB both refer to the current database:

          Dim dbsA As Database, dbsB As Database
          Set dbsA = CurrentDb
          Set dbsB = CurrentDb

This certainly makes it appear as though the object variables dbsA and dbsB point to a single Database object, namely, the currently open database. In other words, executing the instruction:

Set db = CurrentDb ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Access Database Design & Programming, 3rd Edition

Access Database Design & Programming, 3rd Edition

Steven Roman

Publisher Resources

ISBN: 1565926269Catalog PageErrata