1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

H2+Slick設定メモ

Posted at

H2 Database

1.Download

  • MACの場合

http://www.h2database.com/html/main.html
から
All Platforms (zip, 8 MB)
をダウンロードしてzipを解凍

2. 起動

zipを解凍したディレクトリ以下のbinディレクトリに移動

cd h2/bin

下記を実行して起動

bash ./h2.sh

管理画面

ブラウザに管理画面が表示される

スクリーンショット 2016-04-05 17.38.14.png

  • 日本語に変更

スクリーンショット 2016-04-05 17.39.23.png

接続

  • デフォルトはパスワードなし

create table

create table USERS (
  ID INTEGER IDENTITY,
  NAME VARCHAR NOT NULL
);

Slickコード生成

slick-codegenを使う。

作業用ディレクトリにgit cloneする

$ git clone https://github.com/slick/slick-codegen-example.git

create.sqlを書き換える。

$ cd <work_dir>/slick-codegen-example/src/main/sql
$ ls
create.sql
$ cat create.sql
create table IF NOT EXISTS "USERS" (
  ID INTEGER IDENTITY,
  NAME VARCHAR NOT NULL
);

sbt gen-tablesを実行する。

$ cd <work_dir>/slick-codegen-example
$ sbt gen-tables

Tables.scalaが出来るのでプロジェクトにコピーして使う。

  • デフォルトではpackageが「demo」になっている。
$ cd target/scala-2.11/src_managed/slick/demo
$ ls
Tables.scala
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?