Sarwat Hussain
Sarwat Hussain

Reputation: 137

How can I declare a date type parameter in JDBC request in Jmeter

On executing my SP in Jmeter as below

Upvotes: 1

Views: 1519

Answers (2)

Igor
Igor

Reputation: 31

Encountered the same problem today, and after debugging and removing each parameter and value one by one we found out the problem is with the DATE parameter type.

So my advice would be to replace the DATE object with an TIMESTAMP object, since that's how we have done that, and it seems to work.

  • Parameter Types: INTEGER,TIMESTAMP,TIMESTAMP,INTEGER,BIT,VARCHAR

Upvotes: 2

UBIK LOAD PACK
UBIK LOAD PACK

Reputation: 34536

As per reference doc you need to use UPPER Case names as per:

So it would be :

DATE

Upvotes: 0

Related Questions