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
When no <property /> is specified, the DB_VENDOR implementation should return the database product name [1], however, it returns null instead.
<property />
null
<databaseIdProvider type="DB_VENDOR" />
[1] https://mybatis.org/mybatis-3/configuration.html#databaseidprovider
The text was updated successfully, but these errors were encountered:
VendorDatabaseIdProvider#getDatabaseId() should return product name…
VendorDatabaseIdProvider#getDatabaseId()
dc249c1
… when properties is empty `XMLConfigBuilder#databaseIdProviderElement()` sets an empty `Properties` rather than `null`. fixes mybatis#3296
harawata
Successfully merging a pull request may close this issue.
When no
<property />
is specified, the DB_VENDOR implementation should return the database product name [1], however, it returnsnull
instead.[1] https://mybatis.org/mybatis-3/configuration.html#databaseidprovider
The text was updated successfully, but these errors were encountered: