Files
DP44/DataPRO/DbAPI/SPCaching/SPCache.cs

24 lines
787 B
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
namespace DbAPI.SPCaching
{
/// <summary>
/// just a helper class for caching what version of stored procedures to use
/// holds what stored procedure version to use given a client version and a db version
/// once this has been determined we don't need to determine it again ... usually
/// </summary>
public class SPCache
{
/// <summary>
/// application or client version
/// </summary>
public int ClientVersion { get; set; }
/// <summary>
/// database version
/// </summary>
public int DbVersion { get; set; }
/// <summary>
/// version of stored procedure to use
/// </summary>
public int StoredProcedureVersion { get; set; }
}
}