Google Script使用jdbc和数据库mysql

时间:2013-03-23 16:45:41

标签: mysql jdbc google-apps-script

我使用谷歌脚本和JDBC连接器到我的MySQL数据库。我想使用变量运行查询,例如:

var rs = stmt.executeQuery("select*from Comuni where nomeComune=v");

如何让JDBC将v最后解释为变量?

1 个答案:

答案 0 :(得分:0)

我会使用常规的字符串连接 - 这只是JavaScript。

为什么不尝试以下方法:

var rs = stmt.executeQuery( "select * from Comuni where nomeComune={0}".format( value ) );