When I create multiple Statements on my Connection, only the current Statement appears to be executed. Whats the problem?
Location: http://www.jguru.com/faq/view.jsp?EID=391335 Created: Mar 30, 2001 Author: Joe Sam Shirah (http://www.jguru.com/guru/viewbio.jsp?EID=42100) All JDBC objects are required to be threadsafe. Some drivers, unfortunately, implement this requirement by processing Statements serially. This means that additional Statements are not executed until the preceding Statement is completed. See What is required for a driver to be JDBC Compliant? for a link to driver requirements.