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

org.greenrobot.greendao.database.DatabaseStatement Maven / Gradle / Ivy

The newest version!
package org.greenrobot.greendao.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 - 2025 Weber Informatics LLC | Privacy Policy