Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
takezoe committed Jan 20, 2017
1 parent 6f3caf8 commit b5ed2b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -2,7 +2,7 @@ name := "scala-jdbc"

organization := "com.github.takezoe"

version := "1.0.3"
version := "1.0.4-SNAPSHOT"

scalaVersion := "2.12.1"

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/github/takezoe/scala/jdbc/package.scala
Expand Up @@ -18,7 +18,7 @@ package object jdbc {
*/
implicit class SqlStringInterpolation(val sc: StringContext) extends AnyVal {
def sql(args: Any*): SqlTemplate = {
val sql = sc.parts.mkString
val sql = sc.parts.mkString("?")
SqlTemplate(sql, args.toSeq)
}
}
Expand Down

0 comments on commit b5ed2b3

Please sign in to comment.