The subject is self-explanatory. I have a need while iterating through a current database to create a new database to hold error records when the data is insufficient. Can this be done using UCanAccess? Thanks!
David Sills
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
which will create a new database file named "errors.accdb" if it does not already exist. You can use DDL statements to create tables in that database, then use DML statements to write to those tables.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The subject is self-explanatory. I have a need while iterating through a current database to create a new database to hold error records when the data is insufficient. Can this be done using UCanAccess? Thanks!
David Sills
Yes, you could create a second
Connection
using a connection URL likewhich will create a new database file named "errors.accdb" if it does not already exist. You can use DDL statements to create tables in that database, then use DML statements to write to those tables.