File tree Expand file tree Collapse file tree
database-generic/src/Database/Generic Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import Database.Generic.Prelude
44import Database.Generic.Entity.DbTypes (DbValue )
55
66class Database db where
7- -- | Type representing one cell in a row, as returned upon executing statements .
7+ -- | Type representing one cell in a row, as returned from statement execution .
88 --
99 -- Needs to be parsable via 'FromDbValues', into the fields of your data types.
1010 type DbV db :: Type
Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ import Database.Generic.Prelude
88import Database.Generic.Statement qualified as S
99import Database.Generic.Statement.CreateTable qualified as C
1010import Database.Generic.Statement.Delete qualified as C
11+ import Database.Generic.Statement.Fields (OrderedFields )
1112import Database.Generic.Statement.Insert qualified as C
1213import Database.Generic.Statement.Select qualified as C
1314import Database.Generic.Statement.Tx qualified as Tx
1415import Database.Generic.Serialize (Serialize (.. ))
15- import Database.Generic.Statement.Fields (OrderedFields )
1616
1717-- | Similar to 'Database.Generic.Statement.Statement' but without type info.
1818--
You can’t perform that action at this time.
0 commit comments