Beispiel #1
0
 /// <summary>
 /// retrieve cacheable partner table
 /// </summary>
 /// <param name="ACacheableTable">enum that defines partner table to be returned</param>
 /// <returns></returns>
 public static DataTable GetCacheablePartnerTable(TCacheablePartnerTablesEnum ACacheableTable)
 {
     if (GetCacheablePartnerTableDelegate != null)
     {
         return(GetCacheablePartnerTableDelegate(ACacheableTable));
     }
     else
     {
         throw new InvalidOperationException("Delegate 'TGetCacheablePartnerTable' must be initialised before calling this Method");
     }
 }
Beispiel #2
0
 /// <summary>
 /// retrieve cacheable partner table
 /// </summary>
 /// <param name="ACacheableTable">enum that defines partner table to be returned</param>
 /// <returns></returns>
 public static DataTable GetCacheablePartnerTable(TCacheablePartnerTablesEnum ACacheableTable)
 {
     if (FDelegateGetCacheablePartnerTable != null)
     {
         return FDelegateGetCacheablePartnerTable(ACacheableTable);
     }
     else
     {
         throw new InvalidOperationException("Delegate 'TGetCacheablePartnerTable' 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(TCacheablePartnerTablesEnum ACacheableTable)
 {
     System.Type TmpType;
     return(GetCacheableTable(ACacheableTable, "", false, out TmpType));
 }
 /// <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(TCacheablePartnerTablesEnum ACacheableTable)
 {
     System.Type TmpType;
     return GetCacheableTable(ACacheableTable, "", false, out TmpType);
 }
Beispiel #5
0
            /**
             * 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 RefreshCacheablePartnerTable(TCacheablePartnerTablesEnum ACacheableTable)
            {
                DataTable TmpDT;

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

                // Update the cached DataTable file
                TDataCache.SaveCacheableDataTableToFile(TmpDT);
            }
Beispiel #6
0
 /**
  * Returns the chosen DataTable for the Petra Partner Module, Partner 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 GetCacheablePartnerTable2(TCacheablePartnerTablesEnum ACacheableTable, string ACustomTableName)
 {
     return TDataCache.GetCacheableDataTableFromCache2(ACacheableTable.ToString(), ACustomTableName);
 }
Beispiel #7
0
 /**
  * Returns the chosen DataTable for the Petra Partner Module, Partner 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 GetCacheablePartnerTable(TCacheablePartnerTablesEnum ACacheableTable)
 {
     return GetCacheablePartnerTable2(ACacheableTable, String.Empty);
 }