/// <summary> /// retrieve cacheable unit table /// </summary> /// <param name="ACacheableTable">enum that defines unit table to be returned</param> /// <returns></returns> public static DataTable GetCacheableUnitsTable(TCacheableUnitTablesEnum ACacheableTable) { if (FDelegateGetCacheableUnitsTable != null) { return(FDelegateGetCacheableUnitsTable(ACacheableTable)); } else { throw new InvalidOperationException("Delegate 'TGetCacheableUnitsTable' must be initialised before calling this Method"); } }
/// <summary> /// Returns a certain cachable DataTable that contains all columns and all /// rows of a specified table. /// /// @comment Wrapper for other GetCacheableTable method /// </summary> /// /// <param name="ACacheableTable">Tells what cacheable DataTable should be returned.</param> /// <returns>DataTable</returns> public DataTable GetCacheableTable(TCacheableUnitTablesEnum ACacheableTable) { System.Type TmpType; return(GetCacheableTable(ACacheableTable, "", false, out TmpType)); }
/// <summary> /// retrieve cacheable unit table /// </summary> /// <param name="ACacheableTable">enum that defines unit table to be returned</param> /// <returns></returns> public static DataTable GetCacheableUnitsTable(TCacheableUnitTablesEnum ACacheableTable) { if (FDelegateGetCacheableUnitsTable != null) { return FDelegateGetCacheableUnitsTable(ACacheableTable); } else { throw new InvalidOperationException("Delegate 'TGetCacheableUnitsTable' must be initialised before calling this Method"); } }
/// <summary> /// Returns a certain cachable DataTable that contains all columns and all /// rows of a specified table. /// /// @comment Wrapper for other GetCacheableTable method /// </summary> /// /// <param name="ACacheableTable">Tells what cacheable DataTable should be returned.</param> /// <returns>DataTable</returns> public DataTable GetCacheableTable(TCacheableUnitTablesEnum ACacheableTable) { System.Type TmpType; return GetCacheableTable(ACacheableTable, "", false, out TmpType); }
/** * Tells the PetraServer to reload the cacheable DataTable from the DB, * refreshes the DataTable in the client-side Cache and saves it to a file. * * @param ACacheableTable The cached DataTable that should be reloaded from DB. * */ public static void RefreshCacheableUnitsTable(TCacheableUnitTablesEnum ACacheableTable) { // DataTable TmpDT; // TODO // Refresh the Cacheble DataTable on the Serverside and return it // TRemote.MPartner.Subscriptions.Cacheable.RefreshCacheableTable(ACacheableTable, out TmpDT); // UCacheableTablesManager.AddOrRefreshCachedTable(TmpDT, -1); // // // Update the cached DataTable file // TDataCache.SaveCacheableDataTableToFile(TmpDT); }
/** * Returns the chosen DataTable for the Petra Partner Module, Subscriptions * Sub-Module from the * * If the DataTable is not available on the Client side, it is automatically * retrieved from the Petra Server. * * @param ACacheableTable The cached DataTable that should be returned in the * DataSet * @return Chosen DataTable * */ public static DataTable GetCacheableUnitsTable2(TCacheableUnitTablesEnum ACacheableTable, string ACustomTableName) { return TDataCache.GetCacheableDataTableFromCache2(Enum.GetName(typeof(TCacheableUnitTablesEnum), ACacheableTable), ACustomTableName); }
/** * Returns the chosen DataTable for the Petra Partner Module, Subscriptions * Sub-Module from the * * If the DataTable is not available on the Client side, it is automatically * retrieved from the Petra Server. * * @param ACacheableTable The cached DataTable that should be returned in the * DataSet * @return Chosen DataTable * */ public static DataTable GetCacheableUnitsTable(TCacheableUnitTablesEnum ACacheableTable) { return GetCacheableUnitsTable2(ACacheableTable, String.Empty); }