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

com.skynet.sql.core.ISNULL Maven / Gradle / Ivy

The newest version!
package com.skynet.sql.core;

public class ISNULL implements Criteria {

    private String name;

    public ISNULL(String pName) {
        name = pName;
    }

    @Override
    public String toSql(DBQueryBuilder pDBQueryBuilder) {
        return "(" + pDBQueryBuilder.name(name) + " is null)";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy