SqliteType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the type affinities used by columns in SQLite tables.
public enum SqliteType
type SqliteType =
Public Enum SqliteType
- Inheritance
-
SqliteType
Fields
Name | Value | Description |
---|---|---|
Integer | 1 | A signed integer. |
Real | 2 | A floating point value. |
Text | 3 | A text string. |
Blob | 4 | A blob of data. |