[#1022] Add missing ASE implementation for Factory.use()

This commit is contained in:
Lukas Eder 2012-01-04 20:43:24 +00:00
parent a252bff463
commit d5412d1895
2 changed files with 2 additions and 0 deletions

View File

@ -776,6 +776,7 @@ public abstract class jOOQAbstractTest<
@Test
public void testUse() throws Exception {
switch (getDialect()) {
case ASE:
case SQLITE:
case SQLSERVER:
log.info("SKIPPING", "USE test");

View File

@ -1177,6 +1177,7 @@ public class Factory implements FactoryOperations {
result = query("set schema " + schemaName).execute();
break;
case ASE:
case MYSQL:
case SYBASE:
result = query("use " + schemaName).execute();