转义双引号 - JMeter 中的准备语句
Escaping double quotes - Prepared Statement in JMeter
我正在尝试使用 JDBC Request Sampler 在 JMeter 中执行存储过程。其中一个参数包括 XML,其中包含引号
我收到以下错误:
Response message: java.io.IOException: Cannot have quote-char in plain field:[ <xmlns:r="]
设置:
查询类型:Prepered Update Statement
SQL 查询:{CALL SPINSERT(?, ?)}
参数值:Y, <xmlns:r="">
参数类型:CHAR, VARCHAR
我想我需要转义双引号,有什么想法,应该如何正确完成?
实际上是根据 JMeter 网站上的文档,但问题似乎是最后一个双引号后不能有白色 space。
The list must be enclosed in double-quotes if any of the values
contain a comma or double-quote, and any embedded double-quotes must
be doubled-up, for example: "Dbl-Quote: "" and Comma: ,"
我正在尝试使用 JDBC Request Sampler 在 JMeter 中执行存储过程。其中一个参数包括 XML,其中包含引号
我收到以下错误:
Response message: java.io.IOException: Cannot have quote-char in plain field:[ <xmlns:r="]
设置:
查询类型:Prepered Update Statement
SQL 查询:{CALL SPINSERT(?, ?)}
参数值:Y, <xmlns:r="">
参数类型:CHAR, VARCHAR
我想我需要转义双引号,有什么想法,应该如何正确完成?
实际上是根据 JMeter 网站上的文档,但问题似乎是最后一个双引号后不能有白色 space。
The list must be enclosed in double-quotes if any of the values contain a comma or double-quote, and any embedded double-quotes must be doubled-up, for example:
"Dbl-Quote: "" and Comma: ,"