Files
DP44/DataPRO/DbAPI/.svn/pristine/60/60b786e8d59db9f5d0c82755eab268bf3a1af4e3.svn-base

24 lines
787 B
Plaintext
Raw Permalink 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; }
}
}