Modifier and Type | Method and Description |
---|---|
SqlParameter |
SqlParameterList.get(int index) |
SqlParameter |
SqlParameterList.remove(int index) |
SqlParameter |
SqlParameterList.set(int index,
SqlParameter element) |
SqlParameter |
SqlParameter.setName(String name)
Sets the name of the parameter.
|
SqlParameter |
SqlParameter.setValue(Object value)
Sets the value of the parameter.
|
Modifier and Type | Method and Description |
---|---|
Iterator<SqlParameter> |
SqlParameterList.iterator() |
ListIterator<SqlParameter> |
SqlParameterList.listIterator() |
ListIterator<SqlParameter> |
SqlParameterList.listIterator(int index) |
List<SqlParameter> |
SqlParameterList.subList(int fromIndex,
int toIndex) |
Modifier and Type | Method and Description |
---|---|
void |
SqlParameterList.add(int index,
SqlParameter element) |
boolean |
SqlParameterList.add(SqlParameter parameter) |
SqlParameter |
SqlParameterList.set(int index,
SqlParameter element) |
Modifier and Type | Method and Description |
---|---|
boolean |
SqlParameterList.addAll(Collection<? extends SqlParameter> parameters) |
boolean |
SqlParameterList.addAll(int index,
Collection<? extends SqlParameter> c) |
Constructor and Description |
---|
SqlParameterList(SqlParameter... parameters)
Initializes a new instance of the SqlParameterList class from an array of parameters.
|
Constructor and Description |
---|
SqlParameterList(Collection<SqlParameter> parameters)
Initializes a new instance of the SqlParameterList class from a collection of parameters.
|
Copyright © 2020 Microsoft Corporation. All rights reserved.