enum
SQLite3::Type
Overview
Each of the possible types of an SQLite3 column.
Defined in:
sqlite3/type.crEnum Members
-
INTEGER =
1
-
FLOAT =
2
-
BLOB =
4
-
NULL =
5
-
TEXT =
3
Instance Method Summary
-
#blob?
Returns
true
if this enum value equalsBLOB
-
#float?
Returns
true
if this enum value equalsFLOAT
-
#integer?
Returns
true
if this enum value equalsINTEGER
-
#null?
Returns
true
if this enum value equalsNULL
-
#text?
Returns
true
if this enum value equalsTEXT