This commit is contained in:
Kei Hibino 2016-09-16 20:55:10 +09:00
parent b5cd1f3134
commit 669405b9c7
2 changed files with 9 additions and 5 deletions

View File

@ -7,7 +7,7 @@
<meta name="version" content="S5 1.1" />
<meta name="author" content="Kei Hibino" />
<meta name="date" content="2016-09-17" />
<title>Haskell Relational Record Composable, Typesafe Query building</title>
<title>Haskell Relational Record Composable, Typesafe SQL building</title>
<style type="text/css">code{white-space: pre;}</style>
<!-- configuration parameters -->
<meta name="defaultView" content="slideshow" />
@ -65,12 +65,12 @@ code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Inf
<div id="header"></div>
<div id="footer">
<h1>2016-09-17</h1>
<h2>Haskell Relational Record Composable, Typesafe Query building</h2>
<h2>Haskell Relational Record Composable, Typesafe SQL building</h2>
</div>
</div>
<div class="presentation">
<div class="titleslide slide">
<h1 class="title">Haskell Relational Record Composable, Typesafe Query building</h1>
<h1 class="title">Haskell Relational Record Composable, Typesafe SQL building</h1>
<h3 class="author">Kei Hibino</h3>
<h4 class="date">2016-09-17</h4>
</div>
@ -81,7 +81,10 @@ code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Inf
<ul>
<li>http://khibino.github.io/haskell-relatoinal-record/</li>
</ul></li>
<li>Composability and Type-Safety</li>
<li>Composability and Type-Safety
<ul>
<li>Want to find errors of SQL at compile time</li>
</ul></li>
<li>Compile time schema loading and generating type informations</li>
</ul>
</div>

View File

@ -1,5 +1,5 @@
% Haskell Relational Record
Composable, Typesafe Query building
Composable, Typesafe SQL building
% Kei Hibino
% 2016-09-17
@ -9,6 +9,7 @@ Concepts
* SQL building DSL using Haskell
* http://khibino.github.io/haskell-relatoinal-record/
* Composability and Type-Safety
* Want to find errors of SQL at compile time
* Compile time schema loading and generating type informations
Intro