Skip to content

Example of using slick to manage an SQLite DB

Notifications You must be signed in to change notification settings

yashsriv/sqlite-slick

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SQLite Slick

SQLite is a self-contained and serverless SQL database engine. I've put together an example of how to use it in scala using Slick.

Technology

  • SBT 0.13
  • Scala 2.10.3
  • Java 1.7.0_25

Run

With SBT on the path:

sbt run

More

When writing code I like to make the program as self contained as possible, which is especially useful when writing test cases. However, the goal can be difficult to reach when a database it required.

Normally when using a JDBC driver you connect to a database that has already been created (at least all examples I've seen do this). Using slick you can connect to the database engine and issue SQL to create the database. In my example below I have MySQL already setup on my Mac with a user root.

import scala.slick.session.Database
import scala.slick.jdbc.StaticQuery
import Database.threadLocalSession

object CreateDatabase {
  def main(args: Array[String]) {
    Database.forURL("jdbc:mysql://localhost:3306/", driver = "com.mysql.jdbc.Driver", user = "root") withSession {
      StaticQuery.updateNA("CREATE DATABASE `databaseName`").execute
    }
  }
}

And in my build.sbt:

libraryDependencies ++= List(
  "com.typesafe.slick" %% "slick" % "1.0.0",
  "org.slf4j" % "slf4j-nop" % "1.6.4",
  "mysql" % "mysql-connector-java" % "5.1.23"
)

Code possible thanks to Răzvan Panda.

About

Example of using slick to manage an SQLite DB

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages