| 1234567891011121314151617181920212223242526272829 |
- //
- // System.Data.Sql.ISqlUpdatableRecord
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- namespace System.Data.Sql {
- public interface ISqlUpdatableRecord : ISqlRecord, ISqlGetTypedData, ISqlSetTypedData, ISetTypedData
- {
- #region Properties
- bool Updatable { get; }
- #endregion // Properties
- #region Methods
- int SetValues (object[] values);
- #endregion // Methods
- }
- }
- #endif
|