Package asia.hombre.asyncqlitekt
Class AsyncQLiteResult
-
- All Implemented Interfaces:
-
androidx.sqlite.SQLiteStatement
public final class AsyncQLiteResult implements SQLiteStatementContains the values resulting from calling AsyncQLiteConnection.prepare.
- Since:
0.0.1
Ron Lauren Hombre
-
-
Method Summary
Modifier and Type Method Description UnitbindBlob(Integer index, ByteArray value)Does nothing. UnitbindBoolean(Integer index, Boolean value)Does nothing. UnitbindDouble(Integer index, Double value)Does nothing. UnitbindFloat(Integer index, Float value)Does nothing. UnitbindInt(Integer index, Integer value)Does nothing. UnitbindLong(Integer index, Long value)Does nothing. UnitbindNull(Integer index)Does nothing. UnitbindText(Integer index, String value)Does nothing. UnitclearBindings()Does nothing. Unitclose()Does nothing. IntegergetColumnCount()StringgetColumnName(Integer index)ByteArraygetBlob(Integer index)BooleangetBoolean(Integer index)DoublegetDouble(Integer index)FloatgetFloat(Integer index)IntegergetInt(Integer index)LonggetLong(Integer index)StringgetText(Integer index)BooleanisNull(Integer index)Unitreset()Does nothing. Booleanstep()Does nothing. -
-
Method Detail
-
bindBlob
@Deprecated(message = "This method is not used here.") Unit bindBlob(Integer index, ByteArray value)
Does nothing.
-
bindBoolean
@Deprecated(message = "This method is not used here.") Unit bindBoolean(Integer index, Boolean value)
Does nothing.
-
bindDouble
@Deprecated(message = "This method is not used here.") Unit bindDouble(Integer index, Double value)
Does nothing.
-
bindFloat
@Deprecated(message = "This method is not used here.") Unit bindFloat(Integer index, Float value)
Does nothing.
-
bindInt
@Deprecated(message = "This method is not used here.") Unit bindInt(Integer index, Integer value)
Does nothing.
-
bindLong
@Deprecated(message = "This method is not used here.") Unit bindLong(Integer index, Long value)
Does nothing.
-
bindNull
@Deprecated(message = "This method is not used here.") Unit bindNull(Integer index)
Does nothing.
-
bindText
@Deprecated(message = "This method is not used here.") Unit bindText(Integer index, String value)
Does nothing.
-
clearBindings
@Deprecated(message = "This method is not used here.") Unit clearBindings()
Does nothing.
-
close
@Deprecated(message = "This method is not used here.") Unit close()
Does nothing.
-
getColumnCount
Integer getColumnCount()
-
getColumnName
String getColumnName(Integer index)
-
getBoolean
Boolean getBoolean(Integer index)
-
reset
@Deprecated(message = "This method is not used here.") Unit reset()
Does nothing.
-
step
@Deprecated(message = "This method is not used here.", replaceWith = @ReplaceWith(imports = {}, expression = "false")) Boolean step()
Does nothing.
-
-
-
-