Guest_imported
New member
- Jan 1, 1970
- 0
Hi,
I have a database 5Mb size.
I am thinking that maybe it would be better for development reasons (continuous improvements to come while in use), to split the database, back end and front end.
I used a lot of recordsets, and therefore the following statement:
Set recordset= currentdb.openrecordset(....)
The problem is that now the currentdb is not valid anymore, and I want to substitute this statement by:
Set recordset= backdb.openrecordset(...)
where, at opening the database I declared backdb as "c:\access\database_be.mdb"
I tried:
set backdb ="c:\access\database_be.mdb"
when opening a form, just to try, but it does not accept it (ambiguous)
Thanks,
AmaHerrn
I have a database 5Mb size.
I am thinking that maybe it would be better for development reasons (continuous improvements to come while in use), to split the database, back end and front end.
I used a lot of recordsets, and therefore the following statement:
Set recordset= currentdb.openrecordset(....)
The problem is that now the currentdb is not valid anymore, and I want to substitute this statement by:
Set recordset= backdb.openrecordset(...)
where, at opening the database I declared backdb as "c:\access\database_be.mdb"
I tried:
set backdb ="c:\access\database_be.mdb"
when opening a form, just to try, but it does not accept it (ambiguous)
Thanks,
AmaHerrn