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

com.heliorm.sql.SqlStringColumn Maven / Gradle / Ivy

package com.heliorm.sql;

import java.sql.JDBCType;


/** Implementation of string column that is populated by reading from SQL */
final class SqlStringColumn extends SqlColumn implements StringColumn {

    private final int length;

    public SqlStringColumn(Table table, String name, JDBCType jdbcType, boolean nullable, String defVal, int length) {
        super(table, name, jdbcType, nullable, defVal, false);
        this.length = length;
    }

    @Override
    public int getLength() {
        return length;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy