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

com.landawn.abacus.dataSource.NonSliceSelector Maven / Gradle / Ivy

There is a newer version: 1.10.1
Show newest version
/*
 * Copyright (c) 2015, Haiyang Li. All rights reserved.
 */

package com.landawn.abacus.dataSource;

import java.util.List;
import java.util.Map;

import com.landawn.abacus.SliceSelector;

/**
 * 
 * @since 0.8
 * 
 * @author Haiyang Li
 */
public class NonSliceSelector implements SliceSelector {
    @Override
    public String select(String entityName, String sql, Object[] parameters, Map options) {
        return sql;
    }

    @Override
    public String select(String entityName, String sql, List parameters, Map options) {
        return sql;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy