We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In Spring we already have DataSource instance https://docs.oracle.com/javase/8/docs/api/javax/sql/DataSource.html
Can you please add one more method to create a new database handle, likeDB database(DataSource dataSource) into class JDBDT
DB database(DataSource dataSource)
class JDBDT
The text was updated successfully, but these errors were encountered:
This shorthand method will be easy to add in the next release (in a few days). Meanwhile, in the current version you should be able to simply use database(ds.getConnection()) i.e. by using https://docs.oracle.com/javase/8/docs/api/javax/sql/DataSource.html#getConnection--
database(ds.getConnection())
Sorry, something went wrong.
Thanks
JDBDT: support for #47
a73094d
JDBDT: fix - #47
b35f005
@raderio 1.2.0 has been released. Please let me know of any issues.
No branches or pull requests
In Spring we already have DataSource instance https://docs.oracle.com/javase/8/docs/api/javax/sql/DataSource.html
Can you please add one more method to create a new database handle, like
DB database(DataSource dataSource)
intoclass JDBDT
The text was updated successfully, but these errors were encountered: