UpdateRowSource Перечисление
Определение
Задает способ применения результатов команды запроса к обновляемой строке.Specifies how query command results are applied to the row being updated.
public enum class UpdateRowSource
public enum UpdateRowSource
type UpdateRowSource =
Public Enum UpdateRowSource
- Наследование
Поля
Both | 3 | Выходные параметры и первая возвращаемая строка отображаются в измененной строке объекта DataSet.Both the output parameters and the first returned row are mapped to the changed row in the DataSet. |
FirstReturnedRecord | 2 | Данные первой возвращаемой строки отображаются в измененной строке объекта DataSet.The data in the first returned row is mapped to the changed row in the DataSet. |
None | 0 | Все возвращаемые параметры или строки игнорируются.Any returned parameters or rows are ignored. |
OutputParameters | 1 | Выходные параметры отображаются в измененной строке объекта DataSet.Output parameters are mapped to the changed row in the DataSet. |
Комментарии
UpdateRowSourceЗначения используются UpdatedRowSource свойством класса IDbCommand и любыми производными от него классами.The UpdateRowSource values are used by the UpdatedRowSource property of IDbCommand and any classes derived from it.
Дополнительные сведения о свойстве см. в разделе Параметры DataAdapter.For more information property, see DataAdapter Parameters.