RecoverDumps the contents of a database file to a human readable text file. This text file can be used to recover most of the data. This tool does not open the database and can be used even if the database files are corrupted. A database can get corrupted if there is a bug in the database engine or file system software, or if an application writes into the database file that doesn't understand the the file format, or if there is a hardware problem.
static void execute(String dir, String db) throws SQLExceptionDumps the database.Parameters:
dir - the directory
db - the database name (null for all databases)
Throws:
SQLException
static void main(String[] args) throws SQLExceptionThe command line interface for this tool. The options must be split into strings like this: "-db", "test",... Options are case sensitive. The following options are supported:
Parameters:
args - the command line arguments
Throws:
SQLException
void run(String[] args) throws SQLException |