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

sqlg3.runtime.specific.Generic Maven / Gradle / Ivy

Go to download

SQLG is a preprocessor and a library that uses code generation to simplify writing JDBC code

The newest version!
package sqlg3.runtime.specific;

import sqlg3.runtime.DBSpecific;

import java.sql.SQLException;

/**
 * {@link DBSpecific} implementation for generic JDBC database.
 */
public class Generic implements DBSpecific {

    @Override
    public String getNextIdSql(String sequence) throws SQLException {
        throw new SQLException("Database does not support sequences");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy