I'm seeing OraclePreparedStatement executeQuery() exhibit serialization. That is, I have two queries that I want to run concurrently against an Oracle database, using the same connection. However, the OraclePreparedStatement seems to explicitly prohibit concurrent queries.
My question is: Is this serialization a necessary artifact of running both queries on the same connection, or is this configurable?
I've tried setting readOnly to true for the duration of the two queries, but they still serialize.