Skip to content

Commit c559619

Browse files
committed
Update README
1 parent 18f3d29 commit c559619

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)