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

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

Go to download

Lightweight Object Relational Model (ORM) for persisting objects to SQL databases.

There is a newer version: 6.1
Show newest version
package com.j256.ormlite.stmt;

import com.j256.ormlite.dao.Dao;

/**
 * Interface returned by the {@link UpdateBuilder#prepare()} which supports custom UPDATE statements. This should be in
 * turn passed to the {@link Dao#update(PreparedUpdate)} method.
 * 
 * @param 
 *            The class that the code will be operating on.
 * @author graywatson
 */
public interface PreparedUpdate extends PreparedStmt {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy