ISqlUpdatableRecord.cs 451 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // System.Data.Sql.ISqlUpdatableRecord
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. namespace System.Data.Sql {
  11. public interface ISqlUpdatableRecord : ISqlRecord, ISqlGetTypedData, ISqlSetTypedData, ISetTypedData
  12. {
  13. #region Properties
  14. bool Updatable { get; }
  15. #endregion // Properties
  16. #region Methods
  17. int SetValues (object[] values);
  18. #endregion // Methods
  19. }
  20. }
  21. #endif