DataConnectionBase.Core.cs 955 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System.Collections.Generic;
  2. using System.Data.Common;
  3. namespace FastReport.Data
  4. {
  5. partial class DataConnectionBase
  6. {
  7. #region Private Methods
  8. /// <summary>
  9. /// Does nothing
  10. /// </summary>
  11. /// <param name="tableNames"></param>
  12. partial void FilterTables(List<string> tableNames);
  13. /// <summary>
  14. /// Does nothing
  15. /// </summary>
  16. private DbConnection GetDefaultConnection()
  17. {
  18. return null;
  19. }
  20. /// <summary>
  21. /// Does nothing
  22. /// </summary>
  23. /// <param name="connection"></param>
  24. /// <returns>false</returns>
  25. private bool ShouldNotDispose(DbConnection connection)
  26. {
  27. return false;
  28. }
  29. /// <summary>
  30. /// Does nothing
  31. /// </summary>
  32. partial void ShowLoginForm(string lastConnectionString);
  33. #endregion Private Methods
  34. }
  35. }