#183 - Use Statement.bind(String) and Row.get(String) methods instead of bind(Object).

This commit is contained in:
Mark Paluch
2019-09-11 15:38:38 +02:00
parent f7b3e96238
commit fa64006441
3 changed files with 10 additions and 10 deletions

View File

@@ -313,7 +313,7 @@ public class NamedParameterUtilsUnitTests {
operation.bindTo(new BindTarget() {
@Override
public void bind(Object identifier, Object value) {
public void bind(String identifier, Object value) {
throw new UnsupportedOperationException();
}
@@ -324,7 +324,7 @@ public class NamedParameterUtilsUnitTests {
}
@Override
public void bindNull(Object identifier, Class<?> type) {
public void bindNull(String identifier, Class<?> type) {
throw new UnsupportedOperationException();
}
@@ -351,7 +351,7 @@ public class NamedParameterUtilsUnitTests {
operation.bindTo(new BindTarget() {
@Override
public void bind(Object identifier, Object value) {
public void bind(String identifier, Object value) {
throw new UnsupportedOperationException();
}
@@ -361,7 +361,7 @@ public class NamedParameterUtilsUnitTests {
}
@Override
public void bindNull(Object identifier, Class<?> type) {
public void bindNull(String identifier, Class<?> type) {
throw new UnsupportedOperationException();
}
@@ -388,7 +388,7 @@ public class NamedParameterUtilsUnitTests {
operation.bindTo(new BindTarget() {
@Override
public void bind(Object identifier, Object value) {
public void bind(String identifier, Object value) {
throw new UnsupportedOperationException();
}
@@ -398,7 +398,7 @@ public class NamedParameterUtilsUnitTests {
}
@Override
public void bindNull(Object identifier, Class<?> type) {
public void bindNull(String identifier, Class<?> type) {
throw new UnsupportedOperationException();
}