May I suggest you simply go ahead and do the following?
1. Open the VBA IDE
2. Go to View > Watch Window
3. Right click > Add watch
View attachment 119907
4. Write "application" in the expression input box and keep procedure and module to "All Procedures" and "All Modules", respectively
View attachment 119911
5. Expand the resulting Application node
View attachment 119912
6. Expand DBEngine
View attachment 119913
7. Expand Workspaces. You'll find items there, expand one
View attachment 119915
8. Expand Databases. You'll find items there, expand one
View attachment 119914
Doing that gives you a better picture of everything you're dealing with, with the advantage of seeing values and types loaded. You can also fine tune your expression to reach only what you need. For example, to reach Databases, you could write this expression, instead of just "application":
Application.DBEngine.Workspaces(0).Databases(0)