コード例 #1
0
ファイル: Cache.cs プロジェクト: weiplanet/openpetra
 /// <summary>
 /// retrieve cacheable mailing table
 /// </summary>
 /// <param name="ACacheableTable">enum that defines mailing table to be returned</param>
 /// <returns></returns>
 public static DataTable GetCacheableMailingTable(TCacheableMailingTablesEnum ACacheableTable)
 {
     if (GetCacheableMailingTableDelegate != null)
     {
         return(GetCacheableMailingTableDelegate(ACacheableTable));
     }
     else
     {
         throw new InvalidOperationException("Delegate 'TGetCacheableMailingTable' must be initialised before calling this Method");
     }
 }
コード例 #2
0
 /// <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(TCacheableMailingTablesEnum ACacheableTable)
 {
     System.Type TmpType;
     return GetCacheableTable(ACacheableTable, "", false, out TmpType);
 }
コード例 #3
0
ファイル: Cache.cs プロジェクト: js1987/openpetragit
 /// <summary>
 /// retrieve cacheable mailing table
 /// </summary>
 /// <param name="ACacheableTable">enum that defines mailing table to be returned</param>
 /// <returns></returns>
 public static DataTable GetCacheableMailingTable(TCacheableMailingTablesEnum ACacheableTable)
 {
     if (FDelegateGetCacheableMailingTable != null)
     {
         return FDelegateGetCacheableMailingTable(ACacheableTable);
     }
     else
     {
         throw new InvalidOperationException("Delegate 'TGetCacheableMailingTable' must be initialised before calling this Method");
     }
 }
コード例 #4
0
 /// <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(TCacheableMailingTablesEnum ACacheableTable)
 {
     System.Type TmpType;
     return(GetCacheableTable(ACacheableTable, "", false, out TmpType));
 }
コード例 #5
0
ファイル: Cache.cs プロジェクト: Davincier/openpetra
            /**
             * 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 RefreshCacheableMailingTable(TCacheableMailingTablesEnum ACacheableTable)
            {
                DataTable TmpDT;

                // Refresh the Cacheble DataTable on the Serverside and return it
                TmpDT = TRemote.MPartner.Mailing.Cacheable.WebConnectors.RefreshCacheableTableAndGet(ACacheableTable);
                UCacheableTablesManager.AddOrRefreshCachedTable(TmpDT, -1);

                // Update the cached DataTable file
                TDataCache.SaveCacheableDataTableToFile(TmpDT);
            }
コード例 #6
0
ファイル: Cache.cs プロジェクト: Davincier/openpetra
 /**
  * Returns the chosen DataTable for the Petra Partner Module, Mailing
  * 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 GetCacheableMailingTable2(TCacheableMailingTablesEnum ACacheableTable, string ACustomTableName)
 {
     return TDataCache.GetCacheableDataTableFromCache2(Enum.GetName(typeof(TCacheableMailingTablesEnum),
             ACacheableTable), ACustomTableName);
 }
コード例 #7
0
ファイル: Cache.cs プロジェクト: Davincier/openpetra
 /**
  * Returns the chosen DataTable for the Petra Partner Module, Mailing
  * 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 GetCacheableMailingTable(TCacheableMailingTablesEnum ACacheableTable)
 {
     return GetCacheableMailingTable2(ACacheableTable, String.Empty);
 }