-
Notifications
You must be signed in to change notification settings - Fork 431
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
Tvp name with stored procedure #138
Conversation
Codecov Report@@ Coverage Diff @@
## dev #138 +/- ##
===========================================
- Coverage 27.21% 27.2% -0.01%
Complexity 1130 1130
===========================================
Files 95 95
Lines 23268 23268
Branches 3870 3870
===========================================
- Hits 6333 6331 -2
- Misses 15650 15652 +2
Partials 1285 1285
Continue to review full report at Codecov.
|
public String getTvpName() { | ||
return tvpName; | ||
} | ||
|
||
/** | ||
* Retrieves the column meta data of this data table. | ||
* | ||
* @deprecated |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should give details like -> @deprecated As of release 6.1.x, replaced by {@link #[YOUR_METHOD]}
Also give reasons for deprecation which will useful for all contributors.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added another comment saying:
Should give details like -> @deprecated As of release 6.1.x, replaced by {@link #[YOUR_METHOD]}
Also give reasons for deprecation which will useful for all contributors.
@@ -2136,7 +2136,8 @@ public final void setStructured(int n, | |||
String getTVPNameIfNull(int n, | |||
String tvpName) throws SQLServerException { | |||
if ((null == tvpName) || (0 == tvpName.length())) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can use StringUtils.isEmpty()
method.
instead of the public API setTVPName