Deletes the database file.
DropDatabase( parms As String )
Member of UltraLiteAFLib.ULDatabaseManager
parms The file name for the database.
If you drop the databases, all information in the database file is permanently deleted.
This method fails if:
The database you specify does not exist.
There are open connections when DropDatabase is executed.
The following example drops a database:
Dim parms As String parms = "PALM_DB=Syb1;NT_FILE=c:\temp\ul_CustDB.udb" DropDatabase(parms)