I feel like this is a stupid question but I can't figure out how to do it easily.
I have a database structure that has 4 parent type data objects and then 1 child object (Cells) that is the unique combination of each of the parent objects.
I need a way to ensure that whenever a new record is added into one of the parent objects, that all of the new possible Cells are automatically created in the Cells table.
I know how to do this in VB using ADO recordsets, but I'm not sure of the easiest way to do this in Access and I am not familiar with all the Access tricks yet.
I would like to be able to open each parent table directly as a recordset, but it appears I have to set up a Connection object (with a connection string = to the .mdb I am currenty in?).
Isn't there some way to just directly open up a table as a recordset and then parse through each record without having to set up a connection first. It seems like Access should already know what the connection object is since I am in the database already.
Any help?
I have a database structure that has 4 parent type data objects and then 1 child object (Cells) that is the unique combination of each of the parent objects.
I need a way to ensure that whenever a new record is added into one of the parent objects, that all of the new possible Cells are automatically created in the Cells table.
I know how to do this in VB using ADO recordsets, but I'm not sure of the easiest way to do this in Access and I am not familiar with all the Access tricks yet.
I would like to be able to open each parent table directly as a recordset, but it appears I have to set up a Connection object (with a connection string = to the .mdb I am currenty in?).
Isn't there some way to just directly open up a table as a recordset and then parse through each record without having to set up a connection first. It seems like Access should already know what the connection object is since I am in the database already.
Any help?
Last edited: