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

jaskell.sql.In Maven / Gradle / Ivy

package jaskell.sql;

import jaskell.script.Directive;
import jaskell.script.Parameter;

import java.util.List;

public class In implements Directive {
    Directive _statement;

    In(Directive statement){
        this._statement = statement;
    }

    @Override
    public String script() {
        return String.format("IN (%s)", _statement.script());
    }

    @Override
    public List> parameters() {
        return _statement.parameters();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy