We can't remove a dbf file after it has been queried through the driver. We close the resultset, the statement, and the connection, but it's impossible to remove the dbf file while the JVM is running, the operating system tells that the file is in use. How can whe remove it without stopping the JVM?
|
Dear Maite Serra,
You can try "drop table yourtable;" sql to delete your table. "com.hxtt.sql.dbf.DBFDriver.releaseAll();" can release all resource. BTW, you can try the latest package.
With best regards,
Dai Wei
|
All right!
We can remove the file just afer
com.hxtt.sql.dbf.DBFDriver.releaseAll().
Thank you very much,
Maite
|
Dear Maite Serra,
Please remember to download the latest package too, since I remembered the older package should have trouble on "drop table yourtable;" sql. BTW, That issue occured on Remote Access mode or Direct Access mode?
With best regards,
Dai Wei
|