https://issues.apache.org/bugzilla/show_bug.cgi?id=46651
Summary: JDBC sample does not allow empty string(s) in prepare- SELECT statement - java-exception Product: JMeter Version: 2.3.2 Platform: PC OS/Version: Windows XP Status: NEW Severity: normal Priority: P2 Component: Main AssignedTo: jmeter-dev@jakarta.apache.org ReportedBy: slavk...@yahoo.com Here is my prepare SELECT statement: ---- [Prepared Select Statement] SELECT ('EmailAddress=' + CAST(EmailAddress AS VARCHAR)) as a1 from StoreShop.Trainers WHERE EmailAddress=?+'@'+? ---- with: Parameter values: ${ID},${EMAIL-GROUP} Parameter types: VARCHAR,VARCHAR Here is a bulk of data and how JDBC sample is responding for them: 1) {"",""}(two empty strings - not null) AR: the sample is failing: Response message: java.sql.SQLException: number of arguments (0) and number of types (2) are not equal ER: Response data: {"a1"} - data are not found but "a1" is a column name - not java-exception error; 2) {"aaa6",""} - the second parameter is empty string AR: the sample is failing: Response message: java.sql.SQLException: number of arguments (1) and number of types (2) are not equal ER: Response data: {"a1"} - data are not found but "a1" is a column name - not java-exception error; 3) {"","bluerealm.com"} - the first parameter is empty string AR: Response data: {"a1"} as expected - data not found but "a1" in a column name; So, JDBC sample is working inconsistency in three similar cases. My expectation is that in the cases #1 test-results are same as in the #3. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org