Uses of Class
net.sourceforge.jdbdump.dump.Dump

Packages that use Dump
net.sourceforge.jdbdump.connect   
net.sourceforge.jdbdump.connect.connectors   
net.sourceforge.jdbdump.dump   
 

Uses of Dump in net.sourceforge.jdbdump.connect
 

Methods in net.sourceforge.jdbdump.connect that return Dump
abstract  Dump DatabaseConnector.dump()
          Creates a backup of the structure of the entire database.
 

Methods in net.sourceforge.jdbdump.connect with parameters of type Dump
protected  void DatabaseConnector.dumpTables(Dump dump)
          Downloads the structure of all tables in the database.
abstract  void DatabaseConnector.restore(Dump dump)
          Restores the structure of the database from a Dump object loaded from a previously created backup file.
 

Uses of Dump in net.sourceforge.jdbdump.connect.connectors
 

Methods in net.sourceforge.jdbdump.connect.connectors that return Dump
 Dump MysqlConnector.dump()
          Creates a backup of the structure of the entire database.
 Dump PostgresqlConnector.dump()
          Creates a backup of the structure of the entire database.
 

Methods in net.sourceforge.jdbdump.connect.connectors with parameters of type Dump
protected  void MysqlConnector.clearDatabase(Dump dump)
          Clears tables from the database if they already exist, before they are inserted from a dump.
protected  void PostgresqlConnector.clearDatabase(Dump dump)
          Clears tables from the database if they already exist, before they are inserted from a dump.
 void MysqlConnector.restore(Dump dump)
          Restores the structure of the database from a Dump object loaded from a previously created backup file.
 void PostgresqlConnector.restore(Dump dump)
          Restores the structure of the database from a Dump object loaded from a previously created backup file.
 

Uses of Dump in net.sourceforge.jdbdump.dump
 

Methods in net.sourceforge.jdbdump.dump that return Dump
 Dump DumpFileManager.importDump(java.io.File file, DumpFileManager.CompressionMethod compress)
          Loads the database structure as a Dump object from the specified file.
 Dump PlainTextFileManager.importDump(java.io.File file, DumpFileManager.CompressionMethod compress)
          Loads the database structure as a Dump object from the specified file.
 Dump BinaryFileManager.importDump(java.io.File file, DumpFileManager.CompressionMethod compress)
          Loads the database structure as a Dump object from the specified file.
 

Methods in net.sourceforge.jdbdump.dump with parameters of type Dump
 void DumpFileManager.exportDump(Dump dump, java.io.File file, DumpFileManager.CompressionMethod compress)
          Saves a backup of the database represented in the dump object into the specified file.
 void PlainTextFileManager.exportDump(Dump dump, java.io.File file, DumpFileManager.CompressionMethod compress)
          Saves a backup of the database represented in the dump object into the specified file.
 void BinaryFileManager.exportDump(Dump dump, java.io.File file, DumpFileManager.CompressionMethod compress)
          Saves a backup of the database represented in the dump object into the specified file.
 void Table.setDump(Dump dump)
          Sets a reference to a Dump object which contains this Table.
 

Constructors in net.sourceforge.jdbdump.dump with parameters of type Dump
Table(java.lang.String name, Dump dump)
          Creates a new table with specified name.
 



Copyright © 2005-2006 AGH International University of Science and Technology. All Rights Reserved.