git-svn-id: https://samskivert.googlecode.com/svn/trunk@1987 6335cc39-0255-0410-8fd6-9bcaacd3b74c

This commit is contained in:
mdb
2006-11-29 19:39:40 +00:00
parent c57aa2e12c
commit b13e53cfd3
@@ -165,6 +165,9 @@ public abstract class Query<T>
PreparedStatement pstmt = conn.prepareStatement(query.toString());
int argIdx = 1;
for (Join clause : _joinClauses) {
argIdx = clause.bindArguments(pstmt, argIdx);
}
if (_where != null) {
argIdx = _where.bindArguments(pstmt, argIdx);
}