Richard Dallaway
Richard Dallaway
E.g., `.to[Set]` From the mailing list Stefan notes: > You can call .to[Set] on the Query to change it upfront so that Slick doesn't build an intermediate Seq from the...
ScalaDoc for `ConstColumn`: > A scalar value that is known at the client side at the time a query is executed. This is either a constant value (`LiteralColumn`) or a...
I've mentioned it in chapter 3, where we discuss HLists.
I did some work on this: https://underscore.io/blog/posts/2015/07/14/upsert.html
Sort of realated is `withTransactionIsoluation`. Also note trick regarding ordering of calls: ```scala .transactionally .withTransactionIsolation(TransactionIsolation.Serializable) ``` ...not the other way round: https://groups.google.com/forum/#!msg/scalaquery/gJPEDoEPRBA/Dfdzca_dBwAJ
Could be. I don't really know what I mean by error handling. I might be talking application errors, SQL errors, connection failure. It's not thought out. But it seems like...
Related: `named` as a way to track down problems (we list `named` in a table in chapter 4) > You name an action by calling named on it. E.g., `someAction.named(“get...
Sure! On Wed, 14 Oct 2015 at 08:35 Jonathan Ferguson [email protected] wrote: > Should this be moved against the ebook template? > > — > Reply to this email directly...
NB: looks like you can only have `Rep[T]` in the `map` projection, not an arbitrary `Query`. In other words, that `length` call in the above example is what makes it...
Currently Slick [does not have a way to represent a _query_ that returns a single row](https://github.com/slick/slick/issues/711) (it has `headOption` for _actions_, but not for _queries_). To get a sub-select into...