An Ecto SQLite3 adapter.
0

Configure Feed

Select the types of activity you want to include in your feed.

Clean up some documentation

Matthew Johnston (Nov 4, 2024, 8:04 AM -0600) d8710c82 c330935d

+6 -4
+6 -4
lib/ecto/adapters/sqlite3.ex
··· 94 94 The `:binary_id_type` configuration option allows configuring how `:binary_id` fields 95 95 are stored in the database as well as the type of the column in which these IDs will 96 96 be stored. The possible values are: 97 - * `:string` (default): IDs are stored as strings, and the type of the column is `TEXT`. 98 - * `:binary`: IDs are stored in their raw binary form, and the type of the column is `BLOB`. 97 + 98 + * `:string` - IDs are stored as strings, and the type of the column is `TEXT`. This is 99 + the default. 100 + * `:binary` - IDs are stored in their raw binary form, and the type of the column is `BLOB`. 99 101 100 102 The main differences between the two formats are as follows: 101 103 * When stored as binary, UUIDs require much less space in the database. IDs stored as ··· 128 130 129 131 ### LIKE match on BLOB columns 130 132 131 - We have the DSQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option set to true, as 132 - [recommended][3] by SQLite. This means you cannot do LIKE queries on BLOB columns. 133 + We have the `SQLITE_LIKE_DOESNT_MATCH_BLOBS` compile-time definition option set to true, 134 + as [recommended by SQLite][3]. This means you cannot do `LIKE` queries on `BLOB` columns. 133 135 134 136 ### Case sensitivity 135 137