Quickstart

Hello world!

Mill

def ivyDeps = super.ivyDeps() ++ Agg(
  ivy"ba.sake::squery:0.6.4"
  // <add your favorite JDBC driver>
  // <preferably add a connection pool like HikariCP too>
)

Sbt

libraryDependencies ++= Seq(
  "ba.sake" %% "squery" % "0.6.4"
  // <add your favorite JDBC driver>
  // <preferably add a connection pool like HikariCP too>
)

Scala CLI

//> using dep ba.sake::squery:0.6.4
// <add your favorite JDBC driver>
// <preferably add a connection pool like HikariCP too>

Scastie

You can also use this Scastie example to try Squery online.

Examples

You can find examples: