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

com.j256.ormlite.stmt.PreparedQuery Maven / Gradle / Ivy

package com.j256.ormlite.stmt;

import com.j256.ormlite.dao.Dao;

/**
 * Interface returned by the {@link QueryBuilder#prepare()} which supports custom SELECT queries. This should be in turn
 * passed to the {@link Dao#query(PreparedQuery)} or {@link Dao#iterator(PreparedQuery)} methods.
 * 
 * @param 
 *            The class that the code will be operating on.
 * @author graywatson
 */
public interface PreparedQuery extends PreparedStmt {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy