Restructure 2.1.0 Released
- Date
Restructure 2.1.0 is a minor feature release. sqliteVersion
has been added to inspect the version of SQLite that is
being used. JournalMode.off
has been removed as it is no longer safe nor supported.
This release also adds Dynamic Member Lookup to the Row
class, allowing the use of property-like accessors. For
example:
/// Old Method
let value: Int = row["someValue"]
/// New Method
let value: Int = row.someValue