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

de.greenrobot.dao.database.DatabaseStatement Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta3
Show newest version
package de.greenrobot.dao.database;

public interface DatabaseStatement {
    void execute();

    long simpleQueryForLong();

    void bindNull(int index);

    long executeInsert();

    void bindString(int index, String value);

    void bindBlob(int index, byte[] value);

    void bindLong(int index, long value);

    void clearBindings();

    void bindDouble(int index, double value);

    void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy