Jenny,

This isn't a compiler problem, it's a code problem.

> 1 public final Statement createStatement(int resulSetType,
> 2 int resultSetConcurrency, int resultSetHoldability)
> 3 throws SQLException {
> 4   final Statement temp = m_connection.createStatement(
> 5     resultSetType, resultSetConcurrency, resultSetHoldability
> 6   );
> 7   m_lastUsed = System.currentTimeMillis();
> 8   return temp;
> 9 }

There's a typo.  The argument to the method says resulSetType, while the
argument to createStatement says resultSetType.

--Peter 



--
To unsubscribe, e-mail:   <mailto:avalon-users-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:avalon-users-help@;jakarta.apache.org>

Reply via email to