apache / jmeter

Apache JMeter open-source load testing tool for analyzing and measuring the performance of a variety of services
https://jmeter.apache.org/
Apache License 2.0
8.23k stars 2.08k forks source link

JDBC Request .sql script file execution #2225

Open asfimport opened 15 years ago

asfimport commented 15 years ago

Horatiu Vlad (Bug 47045): JDBC Request is supporting only SQL queries and no .sql script files. It would be helpful to have a new Query Type: Script that would take a .sql script file path as input.

Votes in Bugzilla: 1 OS: Linux

asfimport commented 15 years ago

Sebb (migrated from Bugzilla): What format would the script file take?

How is JMeter to know where the statement boundaries are? JDBC does not support multiple queries per statement, as far as I know.

A lot of databases support script files, but as far as I know there is no standard for statement delimiters or indeed for SQL features such as commit, rollback, and set statements.

asfimport commented 15 years ago

Horatiu Vlad (migrated from Bugzilla): I'm using the attached JDBC Sample code that allows Script as Query Type. The for the Query is the script file that was previously created as a DB dump. The only limitation that I have to cope with in my case is the 'client_encoding' that can be set only to 'UNICODE' or not specified at all.

Created attachment JDBCSampler_with_Script_QueryType.tar.gz: JDBCSampler with Script Query Type

asfimport commented 15 years ago

Sebb (migrated from Bugzilla): The script file appears to use

--

as a comment marker, and

;

at the end of a line to delimit statements.

As far as I know, neither of these are standardadised. Also, using ";" to delimit statements is unlikely to work in all cases.

So whilst it might work for your particular case, it looks like it will not work for all JBDC implementations.

It's important that JMeter is able to work with all JDBC implementations.