public class EncryptedDatabaseStatement extends java.lang.Object implements DatabaseStatement
| Constructor and Description |
|---|
EncryptedDatabaseStatement(net.sqlcipher.database.SQLiteStatement delegate) |
| Modifier and Type | Method and Description |
|---|---|
void |
bindBlob(int index,
byte[] value) |
void |
bindDouble(int index,
double value) |
void |
bindLong(int index,
long value) |
void |
bindNull(int index) |
void |
bindString(int index,
java.lang.String value) |
void |
clearBindings() |
void |
close() |
void |
execute() |
long |
executeInsert() |
java.lang.Object |
getRawStatement() |
long |
simpleQueryForLong() |
public EncryptedDatabaseStatement(net.sqlcipher.database.SQLiteStatement delegate)
public void execute()
execute in interface DatabaseStatementpublic long simpleQueryForLong()
simpleQueryForLong in interface DatabaseStatementpublic void bindNull(int index)
bindNull in interface DatabaseStatementpublic long executeInsert()
executeInsert in interface DatabaseStatementpublic void bindString(int index,
java.lang.String value)
bindString in interface DatabaseStatementpublic void bindBlob(int index,
byte[] value)
bindBlob in interface DatabaseStatementpublic void bindLong(int index,
long value)
bindLong in interface DatabaseStatementpublic void clearBindings()
clearBindings in interface DatabaseStatementpublic void bindDouble(int index,
double value)
bindDouble in interface DatabaseStatementpublic void close()
close in interface DatabaseStatementpublic java.lang.Object getRawStatement()
getRawStatement in interface DatabaseStatementAvailable under the Apache License, Version 2.0 - Copyright © 2011-2016 greenrobot.org. All Rights Reserved.