你怎么知道什么时候GroovyStrings不像字符串那样对待?

时间:2013-03-14 14:11:08

标签: mysql groovy mysql-connector groovy-sql

在尝试修改MySQL数据库时,我在Groovy中遇到了一个令人困惑的问题。除非我的GroovyString明确转换为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()

这令人惊讶。我是否应该预料到这个问题,如果是这样的话GroovyStringString个实例可能会被区别对待?

1 个答案:

答案 0 :(得分:5)

这里的区别在于Groovy Sql类明确地与GStrings一起使用以确保参数被正确引用(as explained in the documentation)。

所以它将第一个例子转换为

truncate 'my_table'

哪个错误(正如错误解释的那样)

您也可以使用:

sql.execute "truncate ${Sql.expand(tableName)}"