From: Artyom S. <art...@gm...> - 2009-07-21 05:03:40
|
Hello, 2009/7/19 Keren Lenz <ker...@gm...>: > Does HaskellDB support dynamic queries, that is, queries which are > generated at runtime based on some user input? HaskellDB query construction is carried out in a monad. Monads are first-class in the sense that you can pass monadic computation to a function, return it from a function, etc. So I guess you can support some dynamic queries easily: actually, I used to invoke HaskellDB in GHCi toploop, that is, interactively and dynamically. :-) Can you provide an example of what you're trying to accomplish? Maybe we could help you. Cheers, Artyom Shalkhakov. |