An Ecto SQLite3 adapter.
0

Configure Feed

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

docs: Fix documentation linking issue

Matthew Johnston (Sep 4, 2024, 9:52 PM -0500) 3cbc1cc8 3db4da0f

+1 -1
+1 -1
lib/ecto/adapters/sqlite3.ex
··· 164 164 165 165 This is because the above functions depend on the Ecto Adapter returning the name of the violated constraint, 166 166 which you annotate in your changeset so that Ecto can convert the constraint violation into the correct 167 - updated changeset when the constraint is hit during a `Ecto.Repo.update/2` or `Ecto.Repo.insert/2` operation. 167 + updated changeset when the constraint is hit during a `m:Ecto.Repo.update/2` or `m:Ecto.Repo.insert/2` operation. 168 168 Since we cannot get the name of the violated constraint back from SQLite3 at `INSERT` or `UPDATE` time, 169 169 there is no way to effectively use these changeset functions. This is a SQLite3 limitation. 170 170