DBHelper.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. // DBHelper.cs : Helper class for executing queries with database.
  2. //
  3. // Authors:
  4. // Sureshkumar T ([email protected])
  5. //
  6. // Copyright (c) 2004 Novell Inc., and the individuals listed on the
  7. // ChangeLog entries.
  8. //
  9. //
  10. // Permission is hereby granted, free of charge, to any person
  11. // obtaining a copy of this software and associated documentation
  12. // files (the "Software"), to deal in the Software without
  13. // restriction, including without limitation the rights to use, copy,
  14. // modify, merge, publish, distribute, sublicense, and/or sell copies
  15. // of the Software, and to permit persons to whom the Software is
  16. // furnished to do so, subject to the following conditions:
  17. //
  18. // The above copyright notice and this permission notice shall be
  19. // included in all copies or substantial portions of the Software.
  20. //
  21. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  25. // BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  26. // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  27. // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  28. // SOFTWARE.
  29. using System;
  30. using System.Data;
  31. using System.Data.Common;
  32. using System.Text;
  33. using Mono.Data;
  34. using NUnit.Framework;
  35. namespace MonoTests.System.Data
  36. {
  37. public sealed class DBHelper
  38. {
  39. public static Random random = new Random ( (int) DateTime.Now.Ticks);
  40. public static int ExecuteNonQuery (IDbConnection connection ,string query)
  41. {
  42. IDbCommand command = connection.CreateCommand ();
  43. command.CommandType = CommandType.Text;
  44. command.CommandText = query;
  45. int result = -1;
  46. try {
  47. result = command.ExecuteNonQuery ();
  48. } catch {
  49. return -2;
  50. }
  51. return result;
  52. }
  53. public static int ExecuteSimpleSP (IDbConnection connection ,string proc)
  54. {
  55. IDbCommand command = connection.CreateCommand ();
  56. command.CommandType = CommandType.StoredProcedure;
  57. command.CommandText = proc;
  58. int result = -1;
  59. try {
  60. result = command.ExecuteNonQuery ();
  61. } catch {
  62. return -2;
  63. }
  64. return result;
  65. }
  66. public static string GetRandomName (string prefix, int length)
  67. {
  68. StringBuilder s = new StringBuilder (prefix.Length + 1 + length);
  69. s.Append (prefix);
  70. s.Append ("_");
  71. for (int i = 0; i < length; i++) {
  72. s.Append (random.Next (25) + 'A');
  73. }
  74. return s.ToString ();
  75. }
  76. }
  77. }