Situation
I have a (Tomcat) Java web application using jTDS to connect to a MSSQL 2008 database. This Java application executes 99% of its MSSQL stored procedures using user input.
Problem
The jTDS driver replies sometimes (at different places in the application) with error:
Maximum stored procedure, function, trigger, or view nesting level exceeded (limit 32).
We can avoid this by adding prepareSQL=0 to the jTDS connection string. Then the error goes away everywhere, but with all other values of prepareSQL, the error stays. I don't know how many stored procedure nesting levels jTDS adds, but apparently it's too much for our application.
Questions
With only stored procedures to execute, of course using Prepared Statements in the Java code, how much effect does
prepareSQL=3(orprepareSQL=0) have for us? In other words: on every website I find people say "Never useprepareSQL=0in production environments", is that also applicable to this situation?If
prepareSQL=0is not a recommended solution, a security issue, etc., we should maybe look for another driver. jTDS has not been updated the past 2 years and Microsoft has a driver for JDBC 4.0. I can't find any benchmarks or comparisons between jTDS and Microsoft's JDBC 4.0 driver though. With Microsoft's 2.0 and 3.0 drivers, the general opinion seemed to be that jTDS is faster, better, more efficient. Is that still the case with JDBC 4.0 or has Microsoft passed its competitor in this?