When I use JMeter with JDBC request on Oracle DB it doesn't allow ;
in statement.
SQL query. Do not enter a trailing semi-colon.
For example
insert into a select '1' from dual;
insert into b select '1' from dual
Will produce exception (while it work when split to 2 separate request):
java.sql.SQLSyntaxErrorException: ORA-00933: SQL command not properly ended
If I want to execute clear/insert of test data I can't insert multiple tables using 1 JDBC request and I must create at least 1 request per table (can be with multiple values per table).
Is there a way to insert/update/delete except using a callable statement ?
Is this limitation connected to solely to SQL injection?