Please, help me understanding that article.
It means that when I launch statistics on my production Database, and I see that for every statement generated by Hibernate
Code:
executions == parse calls
these are all soft parse ?
I made some experiment with Oracle drivers, and setting this property on the connection that I get from the pool:
Code:
conn.setConnectionCachingEnabled(true);
I obtain
Code:
parse calls==1
for every statement !!!!
If I understood well, this mean that with this Oracle Driver can let me skip also the soft parsing of SQL ?
I would like to understand......