au.net.causal.maven.plugins.boxdb.db.ExecutionMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boxdb-maven-plugin Show documentation
Show all versions of boxdb-maven-plugin Show documentation
Maven plugin to start databases using Docker and VMs
package au.net.causal.maven.plugins.boxdb.db;
/**
* How a SQL script is executed.
*/
public enum ExecutionMode
{
/**
* Execute scripts using JDBC.
*/
JDBC,
/**
* Execute scripts using native database tool if available. This mode may be slower but
* also may allow additional functionality.
*/
NATIVE
}