de.greenrobot.dao.database.DatabaseStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greendao Show documentation
Show all versions of greendao Show documentation
Forked library from the original greendao from greenrobot
The 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 - 2025 Weber Informatics LLC | Privacy Policy