Int32
struct Int32 : SignedInteger, Comparable, Equatable
Int32 adopts DatabaseValueConvertible and StatementColumnConvertible.
-
Returns a value initialized from a raw SQLite statement pointer.
Declaration
Swift
public init(sqliteStatement: SQLiteStatement, index: Int32)
Parameters
sqliteStatement
A pointer to an SQLite statement.
index
The column index.
-
Returns a value that can be stored in the database.
Declaration
Swift
public var databaseValue: DatabaseValue
-
Returns an Int32 initialized from databaseValue, if possible.
Declaration
Swift
public static func fromDatabaseValue(_ databaseValue: DatabaseValue) -> Int32?