-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ability to dynamically load an RDBC driver #9
Comments
Would this be a subclass, or would this be something like |
It would need to be dynamic loading of shared libs so that a user can use any driver with a product without having to have a version of the product that is compiled against the driver they want to use. |
Does anyone really load JDBC drivers at runtime in practice? I always thought that was an obscure thing to do. |
Actually, this is very common in desktop products where the user can add new JDBC drivers through the user interface without the need to restart the application. |
I see... Like crystal reports |
Currently, it is necessary to statically link to all possible RDBC driver implementations that need to be used at runtime but one of the main benefits of ODBC/JDBC is that new drivers can be loaded at runtime, so we need a similar mechanism here.
The text was updated successfully, but these errors were encountered: