18 using System.Collections.Generic;
22 namespace Deveel.Data.Sql.Statements {
39 public bool TryGet(
string query, out IEnumerable<SqlStatement> statements) {
40 throw new NotImplementedException();
43 public void Set(
string query, IEnumerable<SqlStatement> statements) {
44 throw new NotImplementedException();
StatementCache(ICache cache)
Constructs the object around the provided cache handler.
A wrapper around a specialized ICache used to store and retrieve parsed SqlStatement objects...
void Set(string query, IEnumerable< SqlStatement > statements)
Represents a cache of Objects. /summary>
Provides a contract to access a caching system.
bool TryGet(string query, out IEnumerable< SqlStatement > statements)