Skip to content

Instantly share code, notes, and snippets.

@linuxsoares
Created January 27, 2018 13:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxsoares/a8fa50fc8235a7d6ca85773046735b5c to your computer and use it in GitHub Desktop.
Save linuxsoares/a8fa50fc8235a7d6ca85773046735b5c to your computer and use it in GitHub Desktop.
(ns todo.database
(:require [korma.db :as korma]))
(def db-connection-info
(korma/mysql
{:classname "com.mysql.jdbc.Driver"
:subprotocol "mysql"
:user "root"
:subname "//localhost:3306/todo"}))
; set up korma
(korma/defdb db db-connection-info)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment