schemacrawler.tools.executable.Executable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of schemacrawler Show documentation
Show all versions of schemacrawler Show documentation
SchemaCrawler is an open-source Java API that makes working with database metadata as easy as working with plain old Java objects. SchemaCrawler is also a database schema discovery and comprehension, and schema documentation tool. You can search for database schema objects using regular expressions, and output the schema and data in a readable text format. The output is designed to be diff-ed against other database schemas.
package schemacrawler.tools.executable;
import java.sql.Connection;
import schemacrawler.schemacrawler.Config;
import schemacrawler.schemacrawler.DatabaseSpecificOverrideOptions;
import schemacrawler.schemacrawler.SchemaCrawlerOptions;
import schemacrawler.tools.options.OutputOptions;
public interface Executable
{
/**
* Executes main functionality for SchemaCrawler.
*
* @param connection
* Database connection
* @throws Exception
* On an exception
*/
void execute(Connection connection)
throws Exception;
/**
* Executes main functionality for SchemaCrawler.
*
* @param connection
* Database connection
* @throws Exception
* On an exception
*/
void execute(Connection connection,
DatabaseSpecificOverrideOptions databaseSpecificOverrideOptions)
throws Exception;
Config getAdditionalConfiguration();
String getCommand();
OutputOptions getOutputOptions();
SchemaCrawlerOptions getSchemaCrawlerOptions();
void setAdditionalConfiguration(Config config);
void setOutputOptions(OutputOptions outputOptions);
void setSchemaCrawlerOptions(SchemaCrawlerOptions schemaCrawlerOptions);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy