This commit is contained in:
Michael Bayne
2006-11-29 19:39:40 +00:00
parent 5526c9d823
commit 54195b45f9
@@ -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);
}