-
Notifications
You must be signed in to change notification settings - Fork 1
Data Types Support
Dominic Fischer edited this page Jul 21, 2017
·
1 revision
The following Data Types are supported as Properties/Columns.
-
byte,sbyte,ushort,short,int,uint,long,ulongare stored asINTEGER. -
float,doubleanddecimalare stored asREAL. -
bools are stored asINTEGEReither as 1 or 0. -
byte[]s are stored asBLOBs. -
strings are stored asTEXT. -
TimeSpans are stored as ticks in anINTEGERcolumn. -
DateTimes andDateTimeOffsets are stored asTEXT. The maximum accuracy supported by SQLite is milliseconds. -
Guidis stored asTEXT. -
charis stored asTEXT.
Nullable types of the structs are also supported.
If you wish to stored custom data types or supported types differently, use another property as a wrapper.
- Getting Started
- Creating the Schema
- Updating data
- Querying data
- Data Types Support