4. Selecting Data
In this chapter we construct some programs that retrieve data from the database and stream it back, mapping to Scala types on the way. We also introduce YOLO mode for experimenting with doobie in the REPL.
Setting Up
First let’s get our imports out of the way and set up a Transactor
as we did before. You can skip this step if you still have your REPL running from last chapter.
import doobie.imports._
import cats._, cats.data._, cats.implicits._
val xa = DriverManagerTransactor[IOLite](
"org.postgresql.Driver", "jdbc:postgresql:world", "postgres", ""
)
We will be playing with the country
table, shown here for reference. If you don’t have the world
database set up, go back to the Introduction for instructions.
CREATE TABLE country (
code character(3) NOT NULL,
name text NOT NULL,
population integer NOT NULL,
gnp numeric(10,2)
-- more columns, but we won't use them here
)
Internal Streaming
For our first query let’s aim low and select some country names into a List
, then print out the first few. There are several steps here so we have noted the types along the way.
scala> (sql"select name from country"
| .query[String] // Query0[String]
| .list // ConnectionIO[List[String]]
| .transact(xa) // IOLite[List[String]]
| .unsafePerformIO // List[String]
| .take(5).foreach(println))
Afghanistan
Netherlands
Netherlands Antilles
Albania
Algeria
Let’s break this down a bit.
sql"select name from country".query[String]
defines aQuery0[String]
, which is a one-column query that maps each returned row to aString
. We will get to more interesting row types soon..list
is a convenience method that streams the results, accumulating them in aList
, in this case yielding aConnectionIO[List[String]]
. Similar methods are:.vector
, which accumulates to aVector
.to[Coll]
, which accumulates to a typeColl
, given an implicitCanBuildFrom
. This works with Scala standard library collections. #+scalaz.accumulate[M[_]: MonadPlus]
which accumulates to a universally quantified monoidM
. This works with many scalaz collections, as well as standard library collections withMonadPlus
instances. #-scalaz.unique
which returns a single value, raising an exception if there is not exactly one row returned..option
which returns anOption
, raising an exception if there is more than one row returned..nel
which returns anNonEmptyList
, raising an exception if there are no rows returned.- See the Scaladoc for
Query0
for more information on these and other methods.
- The rest is familar;
transact(xa)
yields aTask[List[String]]
which we run, giving us a normal ScalaList[String]
that we print out.
This is ok, but there’s not much point reading all the results from the database when we only want the first few rows. So let’s try a different approach.
scala> (sql"select name from country"
| .query[String] // Query0[String]
| .process // Stream[ConnectionIO, String]
| .take(5) // Stream[ConnectionIO, String]
| .list // ConnectionIO[List[String]]
| .transact(xa) // IOLite[List[String]]
| .unsafePerformIO // List[String]
| .foreach(println))
Afghanistan
Netherlands
Netherlands Antilles
Albania
Algeria
The difference here is that process
gives us a scalaz.stream.Process[ConnectionIO, String]
which emits the results as they arrive from the database. By applying take(5)
we instruct the process to shut everything down (and clean everything up) after five elements have been emitted. This is much more efficient than pulling all 239 rows and then throwing most of them away.
Of course a server-side LIMIT
would be an even better way to do this (for databases that support it), but in cases where you need client-side filtering or other custom postprocessing, Process
is a very general and powerful tool. For more information see the scalaz-stream repo, which has a good list of learning resources.
YOLO Mode
The API we have seen so far is ok, but it’s tiresome to keep saying transact(xa)
and doing foreach(println)
to see what the results look like. So just for REPL exploration there is a module of extra syntax provided on Transactor
that you can import, and it gives you some shortcuts.
import xa.yolo._
We can now run our previous query in an abbreviated form.
scala> (sql"select name from country"
| .query[String] // Query0[String]
| .process // Process[ConnectionIO, String]
| .take(5) // Process[ConnectionIO, String]
| .quick // Task[Unit]
| .unsafePerformIO)
Afghanistan
Netherlands
Netherlands Antilles
Albania
Algeria
This syntax allows you to quickly run a Query0[A]
or Process[ConnectionIO, A]
and see the results printed to the console. This isn’t a huge deal but it can save you some keystrokes when you’re just messing around.
- The
.quick
method sinks the stream to standard out (adding ANSI coloring for fun) and then calls.transact
, yielding aTask[Unit]
. - The
.check
method returns aTask[Unit]
that performs a metadata analysis on the provided query and asserted types and prints out a report. This is covered in detail in the chapter on typechecking queries.
Multi-Column Queries
We can select multiple columns, of course, and map them to a tuple. The gnp
column in our table is nullable so we’ll select that one into an Option[Double]
. In a later chapter we’ll see how to check the types to be sure they’re sensible.
scala> (sql"select code, name, population, gnp from country"
| .query[(String, String, Int, Option[Double])]
| .process.take(5).quick.unsafePerformIO)
(AFG,Afghanistan,22720000,Some(5976.0))
(NLD,Netherlands,15864000,Some(371362.0))
(ANT,Netherlands Antilles,217000,Some(1941.0))
(ALB,Albania,3401200,Some(3205.0))
(DZA,Algeria,31471000,Some(49982.0))
doobie automatically supports row mappings for atomic column types, as well as options, tuples, HList
s, shapeless records, and case classes thereof. So let’s try the same query with an HList
:
scala> import shapeless._
import shapeless._
scala> (sql"select code, name, population, gnp from country"
| .query[String :: String :: Int :: Option[Double] :: HNil]
| .process.take(5).quick.unsafePerformIO)
AFG :: Afghanistan :: 22720000 :: Some(5976.0) :: HNil
NLD :: Netherlands :: 15864000 :: Some(371362.0) :: HNil
ANT :: Netherlands Antilles :: 217000 :: Some(1941.0) :: HNil
ALB :: Albania :: 3401200 :: Some(3205.0) :: HNil
DZA :: Algeria :: 31471000 :: Some(49982.0) :: HNil
And with a shapeless record:
scala> import shapeless.record.Record
import shapeless.record.Record
scala> type Rec = Record.`'code -> String, 'name -> String, 'pop -> Int, 'gnp -> Option[Double]`.T
defined type alias Rec
scala> (sql"select code, name, population, gnp from country"
| .query[Rec]
| .process.take(5).quick.unsafePerformIO)
AFG :: Afghanistan :: 22720000 :: Some(5976.0) :: HNil
NLD :: Netherlands :: 15864000 :: Some(371362.0) :: HNil
ANT :: Netherlands Antilles :: 217000 :: Some(1941.0) :: HNil
ALB :: Albania :: 3401200 :: Some(3205.0) :: HNil
DZA :: Algeria :: 31471000 :: Some(49982.0) :: HNil
And again, mapping rows to a case class.
case class Country(code: String, name: String, pop: Int, gnp: Option[Double])
scala> (sql"select code, name, population, gnp from country"
| .query[Country] // Query0[Country]
| .process.take(5).quick.unsafePerformIO)
Country(AFG,Afghanistan,22720000,Some(5976.0))
Country(NLD,Netherlands,15864000,Some(371362.0))
Country(ANT,Netherlands Antilles,217000,Some(1941.0))
Country(ALB,Albania,3401200,Some(3205.0))
Country(DZA,Algeria,31471000,Some(49982.0))
You can also nest case classes, HList
s, shapeless records, and/or tuples arbitrarily as long as the eventual members are of supported columns types. For instance, here we map the same set of columns to a tuple of two case classes:
case class Code(code: String)
case class Country(name: String, pop: Int, gnp: Option[Double])
scala> (sql"select code, name, population, gnp from country"
| .query[(Code, Country)] // Query0[(Code, Country)]
| .process.take(5).quick.unsafePerformIO)
(Code(AFG),Country(Afghanistan,22720000,Some(5976.0)))
(Code(NLD),Country(Netherlands,15864000,Some(371362.0)))
(Code(ANT),Country(Netherlands Antilles,217000,Some(1941.0)))
(Code(ALB),Country(Albania,3401200,Some(3205.0)))
(Code(DZA),Country(Algeria,31471000,Some(49982.0)))
And just for fun, since the Code
values are constructed from the primary key, let’s turn the results into a Map
. Trivial but useful.
scala> (sql"select code, name, population, gnp from country"
| .query[(Code, Country)] // Query0[(Code, Country)]
| .process.take(5) // Process[ConnectionIO, (Code, Country)]
| .list // ConnectionIO[List[(Code, Country)]]
| .map(_.toMap) // ConnectionIO[Map[Code, Country]]
| .quick.unsafePerformIO)
Map(Code(ANT) -> Country(Netherlands Antilles,217000,Some(1941.0)), Code(DZA) -> Country(Algeria,31471000,Some(49982.0)), Code(ALB) -> Country(Albania,3401200,Some(3205.0)), Code(NLD) -> Country(Netherlands,15864000,Some(371362.0)), Code(AFG) -> Country(Afghanistan,22720000,Some(5976.0)))
Final Streaming
In the examples above we construct a Process[ConnectionIO, A]
and discharge it via .list
(which is just shorthand for .runLog.map(_.toList)
), yielding a ConnectionIO[List[A]]
which eventually becomes a Task[List[A]]
. So the construction and execution of the Process
is entirely internal to the doobie program.
However in some cases a stream is what we want as our “top level” type. For example, http4s can use a Process[Task, A]
directly as a response type, which could allow us to stream a resultset directly to the network socket. We can achieve this in doobie by calling transact
directly on the Process[ConnectionIO, A]
.
scala> val p = {
| sql"select name, population, gnp from country"
| .query[Country] // Query0[Country]
| .process // Process[ConnectionIO, Country]
| .transact(xa) // Process[Task, Country]
| }
p: fs2.Stream[doobie.imports.IOLite,Country] = attemptEval(doobie.util.iolite$IOLite$$anon$3@3faba65f).flatMap(<function1>).flatMap(<function1>)
scala> p.take(5).runLog.unsafePerformIO.foreach(println)
Country(Afghanistan,22720000,Some(5976.0))
Country(Netherlands,15864000,Some(371362.0))
Country(Netherlands Antilles,217000,Some(1941.0))
Country(Albania,3401200,Some(3205.0))
Country(Algeria,31471000,Some(49982.0))
Diving Deeper
The sql
interpolator is sugar for constructors defined in the doobie.hi.connection
module, aliased as HC
if you use the standard imports. Using these constructors directly, the above program would look like this:
val sql = "select code, name, population, gnp from country"
val proc = HC.process[(Code, Country)](sql, ().pure[PreparedStatementIO], 512) // chunk size
(proc.take(5) // Process[ConnectionIO, (Code, Country)]
.list // ConnectionIO[List[(Code, Country)]]
.map(_.toMap) // ConnectionIO[Map[Code, Country]]
.quick.unsafePerformIO)
The process
combinator is parameterized on the process element type and consumes a sql statement and a program in PreparedStatementIO
that sets input parameters and any other pre-execution configuration. In this case the “prepare” program is a no-op.