File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,13 @@ An SQLite3 library with an Ecto adapter implementation.
55
66## Caveats
77
8- * When using the Ecto adapter, all prepared statements are cached using an LRU
9- cache.
8+ * Prepared statements are not cached.
109* Prepared statements are not immutable. You must be careful when manipulating
1110 statements and binding values to statements. Do not try to manipulate the
1211 statements concurrently. Keep it isolated to one process.
12+ * Adding a ` CHECK ` constraint is not supported by the Ecto adapter. This is due
13+ to how Ecto handles specifying constraints. In SQLite you must specify the
14+ ` CHECK ` on creation.
1315* All native calls are run through the Dirty NIF scheduler.
1416* Datetimes are stored without offsets. This is due to how SQLite3 handles date
1517 and times. If you would like to store a timezone, you will need to create a
You can’t perform that action at this time.
0 commit comments