Skip to content
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

Please include SQLException message when failing to connect #871

Closed
flavor8 opened this issue Oct 30, 2014 · 0 comments
Closed

Please include SQLException message when failing to connect #871

flavor8 opened this issue Oct 30, 2014 · 0 comments

Comments

@flavor8
Copy link

flavor8 commented Oct 30, 2014

In DriverDataSource, you have the following code:

    try {
        connection = driver.connect(url, props);
    } catch (SQLException e) {
        throw new FlywayException(
                "Unable to obtain Jdbc connection from DataSource (" + url + ") for user '" + user + "'", e);
    }

Unfortunately this does not include e.getMessage(), which makes it very difficult to understand why connection is failing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants