Package | Description |
---|---|
net.sf.jailer | |
net.sf.jailer.api | |
net.sf.jailer.database | |
net.sf.jailer.ddl |
Modifier and Type | Method and Description |
---|---|
WorkingTableScope |
ExecutionContext.getScope()
Gets scope of working tables, GLOBAL, SESSION_LOCAL or LOCAL_DATABASE
|
Modifier and Type | Method and Description |
---|---|
void |
ExecutionContext.setScope(WorkingTableScope scope)
Sets scope of working tables, GLOBAL, SESSION_LOCAL or LOCAL_DATABASE
|
Modifier and Type | Method and Description |
---|---|
WorkingTableScope |
Subsetter.getScope()
Gets scope of working tables, GLOBAL, SESSION_LOCAL or LOCAL_DATABASE
Default is GLOBAL. |
Modifier and Type | Method and Description |
---|---|
void |
Subsetter.setScope(WorkingTableScope scope)
Sets scope of working tables, GLOBAL, SESSION_LOCAL or LOCAL_DATABASE
|
Modifier and Type | Field and Description |
---|---|
WorkingTableScope |
Session.scope
Scope of temporary tables.
|
Modifier and Type | Method and Description |
---|---|
static WorkingTableScope |
WorkingTableScope.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WorkingTableScope[] |
WorkingTableScope.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
Session(javax.sql.DataSource dataSource,
DBMS dbms,
java.lang.Integer isolationLevel,
WorkingTableScope scope,
boolean transactional)
Constructor.
|
Session(javax.sql.DataSource dataSource,
DBMS dbms,
java.lang.Integer isolationLevel,
WorkingTableScope scope,
boolean transactional,
boolean local)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
boolean |
DDLCreator.createDDL(DataModel datamodel,
Session session,
WorkingTableScope temporaryTableScope,
RowIdSupport rowIdSupport,
java.lang.String workingTableSchema)
Creates the DDL for the working-tables.
|
boolean |
DDLCreator.createDDL(DataModel datamodel,
Session session,
WorkingTableScope temporaryTableScope,
java.lang.String workingTableSchema)
Creates the DDL for the working-tables.
|
boolean |
DDLCreator.createDDL(javax.sql.DataSource dataSource,
DBMS dbms,
WorkingTableScope temporaryTableScope,
java.lang.String workingTableSchema)
Creates the DDL for the working-tables.
|
void |
DDLCreator.createDDL(Session localSession,
WorkingTableScope temporaryTableScope,
java.lang.String workingTableSchema)
Creates the DDL for the working-tables.
|