我使用谷歌脚本和JDBC连接器到我的MySQL数据库。我想使用变量运行查询,例如:
var rs = stmt.executeQuery("select*from Comuni where nomeComune=v");
如何让JDBC将v
最后解释为变量?
答案 0 :(得分:0)
我会使用常规的字符串连接 - 这只是JavaScript。
为什么不尝试以下方法:
var rs = stmt.executeQuery( "select * from Comuni where nomeComune={0}".format( value ) );