Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created October 10, 2014 14:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igaiga/8cf0ace278a490af4f78 to your computer and use it in GitHub Desktop.
Save igaiga/8cf0ace278a490af4f78 to your computer and use it in GitHub Desktop.
key = gets.chomp
@dbh.execute("delete from bookinfos where key = #{key}")
解説
" " でくくった文字列の中で #{変数名}と書くと、変数に代入されている値を文字列にすることができます。
たとえば
foo = "xyz"
"abc #{foo}"
"abc xyz" と同じです。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment