Package com.sleepycat.je.util

Examples of com.sleepycat.je.util.DbDump


    * Dumps one database in ASCII format and adds a DATA=END marker line.
    */
   private void dumpDatabase(String dbName, PrintStream ps)
      throws Exception {

      DbDump dumper = new DbDump(env, dbName, ps, false);
      dumper.dump();
   }
View Full Code Here

TOP

Related Classes of com.sleepycat.je.util.DbDump

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.