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

se.fortnox.reactivewizard.db.query.parts.StaticQueryPart Maven / Gradle / Ivy

There is a newer version: 24.6.0
Show newest version
package se.fortnox.reactivewizard.db.query.parts;

import se.fortnox.reactivewizard.db.query.PreparedStatementParameters;

public class StaticQueryPart implements QueryPart {

    private final String part;

    public StaticQueryPart(String part) {
        this.part = part;
    }

    @Override
    public void visit(StringBuilder sql, Object[] args) {
        sql.append(part);
    }

    @Override
    public void addParams(PreparedStatementParameters preparedStatement, Object[] args) {

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy