The most used database abstraction library in Haskell is HDBC. It means that queries are simply represented as Strings with placeholders. Fewer people use HaskellDB which provides a type-safe way to build queries. Nothing forbids to have user data types to represent common queries and custom functions to build them.
Values in Haskell are immutable, that means that it is not useful to have a mutable object corresponding to a record in the database. Instead, I think it is more common to define user data types and functions that marshall and push/pull values of these types to/from the database.
Whenever database updates are necessary, they are likely to be run in some stateful monad under IO. This would allow to keep the connection open, for example, or do something between the requests.
Finally, functions are first class, so it is possible to construct all functions on the fly. So a function itself may encapsulate whatever information you want.
So, I think, the usual Haskell approach consists of
- algebraic data types to represent actual data (as immutable values)
- the rest of the application to transform these values
- functions which generate queries (encapsulate schema details, marshal data to/from Haskell data types)
- (optionally) a stateful monad to run queries (hide details of database access)
- functions which run the queries (hide details of database access)