-
Notifications
You must be signed in to change notification settings - Fork 428
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
SQLServerMetaData Constructor Issue #2404
Comments
Looks like an innocuous change. This should be acceptable todo. Feel free to make a PR or I will later. |
mpwong852
added a commit
to mpwong852/mssql-jdbc
that referenced
this issue
May 7, 2024
Issue microsoft#2404 Make this enum to be public, so that people can create "SQLServerMetaData" like below: new SQLServerMetaData("row_id", java.sql.Types.INTEGER, 0, 0, true, false, SQLServerSortOrder.Unspecified, -1)
Jeffery-Wasty
pushed a commit
that referenced
this issue
May 10, 2024
Issue #2404 Make this enum to be public, so that people can create "SQLServerMetaData" like below: new SQLServerMetaData("row_id", java.sql.Types.INTEGER, 0, 0, true, false, SQLServerSortOrder.Unspecified, -1)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Driver version
11.2.3.jre17
JAVA/JVM version
Java 17
Is your feature request related to a problem? If so, please give a short summary of the problem and how the feature would resolve it
I need to use create "SQLServerMetaData" like below
(new SQLServerMetaData("row_id", java.sql.Types.INTEGER, 0, 0, true, false, SQLServerSortOrder.Unspecified, -1)
I find that enum SQLServerSortOrder is not public, which cause me can not use this constructor. Can you make it become public ?
Describe the preferred solution
make enum SQLServerSortOrder become public
Tasks
The text was updated successfully, but these errors were encountered: