我尝试创建一个简单的Gradle任务来执行sql查询。 我尝试执行的命令是:
UPDATE user_account SET user_password = 'xyz'
完整的命令行如下:
"c:\Program Files\MariaDB 10.3\bin\mysql.exe" --user=dbUser --password=dbPass-D dbName -e "UPDATE user_account SET user_password = 'xyz'"
此命令在命令行上运行良好。但是,这在Gradle Exec任务中不起作用:
task updatePasswords(type:Exec) {
def sql = "UPDATE user_account SET user_password = 'xyz'"
def myCmd = '"' + dbSqlExe + '" --user=' + dbUser + ' --password=' + dbPass + ' -D ' + dbDb + ' -e "' + sql + '"'
println 'Update cmd: ' + myCmd
commandLine 'cmd', '/c', myCmd
ignoreExitValue = true
}
哪里
def dbSqlExe = "c:\\Program Files\\MariaDB 10.3\\bin\\mysql.exe"
此任务报告错误:
'c:\Program' is not recognized as an internal or external command, operable program or batch file.
如果我删除了sql查询周围的双引号,那么将找到mysql.exe,但是该命令不再有效,因为mysql需要在SQL查询周围加上双引号。
我尝试了以下线程中的解决方案:gradle: Execute task "type:Exec" with many arguments with spaces,但没有成功。
任何提示我应该如何格式化我的任务?
答案 0 :(得分:0)
尝试一下
task updatePasswords(type:Exec) {
def sql = "UPDATE user_account SET user_password = 'xyz'"
commandLine = ['cmd', '/c', '"' + dbSqlExe + '"', "--user=$dbUser", "--password=$dbPass", '-D', dbDb, '-e', sql]
ignoreExitValue = true
doFirst {
println "Executing $commandLine"
}
}