MySQL データベースを変更しようとしているときに、Groovy で紛らわしい問題に遭遇しました。myGroovyString
が明示的にjava.lang.String
:
import groovy.sql.Sql
def sql = Sql.newInstance('jdbc:mysql://localhost/test?useUnicode=yes&characterEncoding=UTF-8', 'user', 'pass', 'com.mysql.jdbc.Driver')
def tableName = 'my_table'
sql.execute "truncate $tableName"
スロー:
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''my_table'' at line 1
以下は問題なく動作しますが:
sql.execute "truncate $tableName".toString()
これは驚くべきことです。私はこの問題を予期すべきでしたか? もしそうなら、どのような状況GroovyString
やString
インスタンスが異なる扱いを受ける可能性がありますか?