I've searched all over for this information and could only find this link, which appears specific to the Java implementation.
http://opensource.atlassian.com/confluence/oss/display/IBATIS/Environment+Specific+Information My problem is that long(ish)-running queries are timing out because IBatis seems to be using a default SqlCommand object (in this case I'm using the sqlServer2.0 provider). Is there either a way I can control this on a SQL statement level or at least increase the default timeout across the entire data source. I know that a Connection Timeout can be specified within the connection string itself, but this does not solve the issue. I could download the latest source and go hunting through the code to try and modify this, but was hoping someone could point me in the right direction before I start stabbing in the dark :-) Best Regards, Clyde

