DBHelper.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.Text;
  32. namespace MonoTests.System.Data.Connected
  33. {
  34. public sealed class DBHelper
  35. {
  36. public static Random random = new Random ( (int) DateTime.Now.Ticks);
  37. public static int ExecuteNonQuery (IDbConnection connection ,string query)
  38. {
  39. IDbCommand command = connection.CreateCommand ();
  40. command.CommandType = CommandType.Text;
  41. command.CommandText = query;
  42. command.CommandTimeout = 120;
  43. int result = -1;
  44. try {
  45. result = command.ExecuteNonQuery ();
  46. } catch {
  47. return -2;
  48. }
  49. return result;
  50. }
  51. public static int ExecuteSimpleSP (IDbConnection connection ,string proc)
  52. {
  53. IDbCommand command = connection.CreateCommand ();
  54. command.CommandType = CommandType.StoredProcedure;
  55. command.CommandText = proc;
  56. int result = -1;
  57. try {
  58. result = command.ExecuteNonQuery ();
  59. } catch {
  60. return -2;
  61. }
  62. return result;
  63. }
  64. public static string GetRandomName (string prefix, int length)
  65. {
  66. StringBuilder s = new StringBuilder (prefix.Length + 1 + length);
  67. s.Append (prefix);
  68. s.Append ("_");
  69. for (int i = 0; i < length; i++) {
  70. s.Append (random.Next (25) + 'A');
  71. }
  72. return s.ToString ();
  73. }
  74. }
  75. }