T
The Mad Ape
When I use the code below to create an mdb (access database) I am
unable to release it and the locking file remains persistent. For my
app this is bad if the user tries to delete the mdb later on.
Has anyone encountered this scenario? Is this a bug? I am using VB.Net
2005. Is there any way to get out of this jam? Currently my app will
only release its hold on the mdb after the app closes. I do not
understand.
Please help as I am on a deadline on Monday morning and am in a HUGE
pickle.
Dim catNewDB As New ADOX.Catalog
XMLFILE = strFi & "\merchantable" & strDate & strTime
catNewDB.Create("Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" &
XMLFILE & ".mdb;")
catNewDB = Nothing
There is no member of ADOX to drop, close, destruct the connection.
Thanks for any help you can provide.
Peace
The Mad Ape
unable to release it and the locking file remains persistent. For my
app this is bad if the user tries to delete the mdb later on.
Has anyone encountered this scenario? Is this a bug? I am using VB.Net
2005. Is there any way to get out of this jam? Currently my app will
only release its hold on the mdb after the app closes. I do not
understand.
Please help as I am on a deadline on Monday morning and am in a HUGE
pickle.
Dim catNewDB As New ADOX.Catalog
XMLFILE = strFi & "\merchantable" & strDate & strTime
catNewDB.Create("Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" &
XMLFILE & ".mdb;")
catNewDB = Nothing
There is no member of ADOX to drop, close, destruct the connection.
Thanks for any help you can provide.
Peace
The Mad Ape