ConnectionManager.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. // ConnectionManager.cs - Singleton ConnectionManager class to manage
  2. // database connections for test cases.
  3. //
  4. // Authors:
  5. // Sureshkumar T ([email protected])
  6. //
  7. // Copyright Novell Inc., and the individuals listed on the
  8. // ChangeLog entries.
  9. //
  10. //
  11. // Permission is hereby granted, free of charge, to any person
  12. // obtaining a copy of this software and associated documentation
  13. // files (the "Software"), to deal in the Software without
  14. // restriction, including without limitation the rights to use, copy,
  15. // modify, merge, publish, distribute, sublicense, and/or sell copies
  16. // of the Software, and to permit persons to whom the Software is
  17. // furnished to do so, subject to the following conditions:
  18. //
  19. // The above copyright notice and this permission notice shall be
  20. // included in all copies or substantial portions of the Software.
  21. //
  22. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  23. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  24. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  25. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  26. // BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  27. // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  28. // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  29. // SOFTWARE.
  30. using System;
  31. using System.Configuration;
  32. using System.Data;
  33. using Mono.Data;
  34. namespace MonoTests.System.Data
  35. {
  36. public class ConnectionManager
  37. {
  38. private static ConnectionManager Instance;
  39. private IDbConnection _connection;
  40. private string _connectionString;
  41. static ConnectionManager ()
  42. {
  43. Instance = new ConnectionManager ();
  44. }
  45. private ConnectionManager ()
  46. {
  47. string connectionString = ConfigurationSettings.AppSettings ["ConnString"];
  48. if (connectionString == null || connectionString.Equals (String.Empty)) {
  49. throw new ArgumentException ("Connection string is invalid!");
  50. }
  51. _connection = ProviderFactory.CreateConnectionFromConfig ("ConnString");
  52. _connectionString = Connection.ConnectionString;
  53. }
  54. public static ConnectionManager Singleton
  55. {
  56. get {return Instance;}
  57. }
  58. public IDbConnection Connection
  59. {
  60. get {return _connection;}
  61. }
  62. public string ConnectionString
  63. {
  64. get {return _connectionString;}
  65. }
  66. public void OpenConnection ()
  67. {
  68. if (_connection == null)
  69. _connection = ProviderFactory.CreateConnectionFromConfig ("ConnString");
  70. _connection.ConnectionString = _connectionString;
  71. _connection.Open ();
  72. }
  73. public void CloseConnection ()
  74. {
  75. if (_connection != null && _connection.State != ConnectionState.Closed)
  76. _connection.Close ();
  77. }
  78. }
  79. }