All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.util.sqlserver.SQLServerDatabase Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
package org.jooq.util.sqlserver;

import java.sql.SQLException;
import java.util.Collections;
import java.util.List;

import org.jooq.impl.Factory;
import org.jooq.util.SequenceDefinition;
import org.jooq.util.ansi.ANSIDatabase;

/**
 * @author Lukas Eder
 */
public class SQLServerDatabase extends ANSIDatabase {

    @Override
    public Factory create() {
        return new SQLServerFactory(getConnection());
    }

    @Override
    protected List getSequences0() throws SQLException {
        return Collections.emptyList();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy