I am passing a recordset through tiers in an application. Is it better to pass By Reference or By Value? I am not going to be modifying the recordset in any way after it's passed.
I know that By Reference is used when you need to modify the object being passed. When I use By Reference am I creating a copy of the recordset because I am using a pointer to where the recordset resides in memory?
Another question. If I pass a form object in a parameter, am I creating another instance of it?
I know that By Reference is used when you need to modify the object being passed. When I use By Reference am I creating a copy of the recordset because I am using a pointer to where the recordset resides in memory?
Another question. If I pass a form object in a parameter, am I creating another instance of it?