mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-15 04:35:00 +00:00
15 lines
290 B
C#
15 lines
290 B
C#
namespace ICD.Common.Utils.Sqlite
|
|
{
|
|
public abstract class IcdDbDataReader : IIcdDataReader
|
|
{
|
|
/// <summary>
|
|
/// Release resources.
|
|
/// </summary>
|
|
public abstract void Dispose();
|
|
|
|
public abstract bool Read();
|
|
|
|
public abstract object this[string columnId] { get; }
|
|
}
|
|
}
|