Jeremy Huiskamp schrieb:
> Would I be correct in assuming that the majority of java.sql would be
> trivial to implement by reading the javadocs (everything except
> DriverManager)? I can take a whack at the low hanging fruit this
> weekend.
The java.sql package mostly contains interfaces, so it shouldn't be too
much work, but what's so difficult about the DriverManager. It only has
to manage a list of registered Driver implementations and the
getConnection methods should only iterate through the available drivers,
check if the URL is supported and if yes, delegate the call to
Driver#connect.
Tor
|