public DataCacheSelectDataResult SelectData(DataCacheCookie cookie, SelectStatement[] selects)
 {
     return(((DataCacheRoot)Application["DataStore"]).SelectData(cookie, selects));
 }
 public DataCacheResult NotifyDirtyTables(DataCacheCookie cookie,
                                          params string[] dirtyTablesNames)
 {
     return(((DataCacheRoot)Application["DataStore"]).NotifyDirtyTables(cookie, dirtyTablesNames));
 }
 public DataCacheResult ProcessCookie(DataCacheCookie cookie)
 {
     return(((DataCacheRoot)Application["DataStore"]).ProcessCookie(cookie));
 }
Ejemplo n.º 4
0
 DataCacheUpdateSchemaResult ICacheToCacheCommunicationCore.UpdateSchema(DataCacheCookie cookie,
                                                                         DBTable[] tables, bool dontCreateIfFirstTableNotExist)
 {
     return(UpdateSchema(cookie, tables, dontCreateIfFirstTableNotExist));
 }
 public DataCacheModificationResult ModifyData(DataCacheCookie cookie,
                                               ModificationStatement[] dmlStatements)
 {
     return(((DataCacheRoot)Application["DataStore"]).ModifyData(cookie, dmlStatements));
 }
Ejemplo n.º 6
0
 DataCacheResult ICacheToCacheCommunicationCore.ProcessCookie(DataCacheCookie cookie)
 {
     return(ProcessCookie(cookie));
 }
Ejemplo n.º 7
0
 DataCacheSelectDataResult ICacheToCacheCommunicationCore.SelectData(DataCacheCookie cookie,
                                                                     SelectStatement[] selects)
 {
     return(SelectData(cookie, selects));
 }
Ejemplo n.º 8
0
 DataCacheModificationResult ICacheToCacheCommunicationCore.ModifyData(DataCacheCookie cookie,
                                                                       ModificationStatement[] dmlStatements)
 {
     return(ModifyData(cookie, dmlStatements));
 }
Ejemplo n.º 9
0
 DataCacheResult ICacheToCacheCommunicationCore.NotifyDirtyTables(DataCacheCookie cookie,
                                                                  params string[] dirtyTablesNames)
 {
     return(NotifyDirtyTables(cookie, dirtyTablesNames));
 }
Ejemplo n.º 10
0
 protected virtual DataCacheUpdateSchemaResult UpdateSchema(DataCacheCookie cookie,
                                                            DBTable[] tables, bool dontCreateIfFirstTableNotExits)
 {
     throw new InvalidOperationException("Schema modification is not allowed");
 }
Ejemplo n.º 11
0
 public virtual DataCacheSelectDataResult SelectData(DataCacheCookie cookie,
                                                     SelectStatement[] selects)
 {
     return((DataCacheSelectDataResult)Invoke("SelectData", new object[] { cookie, selects })[0]);
 }
Ejemplo n.º 12
0
 public virtual DataCacheResult ProcessCookie(DataCacheCookie cookie)
 {
     return((DataCacheResult)Invoke("ProcessCookie", new object[] { cookie })[0]);
 }
Ejemplo n.º 13
0
 public virtual DataCacheResult NotifyDirtyTables(DataCacheCookie cookie,
                                                  params string[] dirtyTablesNames)
 {
     return((DataCacheResult)Invoke("NotifyDirtyTables",
                                    new object[] { cookie, dirtyTablesNames })[0]);
 }
Ejemplo n.º 14
0
 public virtual DataCacheModificationResult ModifyData(DataCacheCookie cookie,
                                                       ModificationStatement[] dmlStatements)
 {
     return((DataCacheModificationResult)Invoke("ModifyData",
                                                new object[] { cookie, dmlStatements })[0]);
 }