MySQLConnector.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. using MySql.Data.MySqlClient;
  5. namespace HyperCube
  6. {
  7. public class MySQLConnector
  8. {
  9. private MySQLConnector(){}
  10. private readonly string Server = "dmatter.net";
  11. private readonly string DatabaseName = "documents";
  12. private readonly string UserName = "promsystem";
  13. private readonly string Password = "PrmSystem212";
  14. MySqlCommand SQLcom;
  15. public MySqlConnection Connection { get; set; }
  16. private static MySQLConnector _instance = null;
  17. public static MySQLConnector Instance()
  18. {
  19. if (_instance == null)
  20. _instance = new MySQLConnector();
  21. return _instance;
  22. }
  23. public bool IsConnect()
  24. {
  25. if (Connection == null)
  26. {
  27. string connstring = $"Server={Server}; database={DatabaseName}; UID={UserName}; password={Password}";
  28. Connection = new MySqlConnection(connstring);
  29. Connection.Open();
  30. }
  31. else if (Connection.State != System.Data.ConnectionState.Open)
  32. Connection.Open();
  33. return true;
  34. }
  35. public long SQLInsert(string sql)
  36. {
  37. long lastID = 0;
  38. bool connected = IsConnect();
  39. if (connected)
  40. {
  41. SQLcom = new(sql, Connection);
  42. SQLcom.ExecuteNonQuery();
  43. SQLcom.Dispose();
  44. lastID = SQLcom.LastInsertedId;
  45. }
  46. else
  47. Console.WriteLine("Not connected to DB.");
  48. return lastID;
  49. }
  50. public async Task<Dictionary<int, Models.ArticleModel>> SQLSelectArticles(string sql)
  51. {
  52. Dictionary<int, Models.ArticleModel> articleModels = new();
  53. Models.ArticleModel articleModel;
  54. bool connected = IsConnect();
  55. if (connected)
  56. {
  57. SQLcom = new(sql, Connection);
  58. MySqlDataReader rdr = SQLcom.ExecuteReader();
  59. while (rdr.Read())
  60. {
  61. Console.WriteLine("{0} {1} {2} {3} {4}", rdr.GetInt32(0), rdr.GetString(1),
  62. rdr.GetString(2), rdr.GetDateTime(3), rdr.GetString(4));
  63. articleModel = new();
  64. articleModel.Filename = rdr.GetString(1);
  65. articleModel.Name = rdr.GetString(2);
  66. articleModel.PublishDate = rdr.GetDateTime(3);
  67. articleModel.Authors = rdr.GetString(4);
  68. articleModels.Add(rdr.GetInt32(0), articleModel);
  69. }
  70. await Task.WhenAll();
  71. Console.WriteLine("End reading DB");
  72. return articleModels;
  73. }
  74. else
  75. Console.WriteLine("Not connected to DB.");
  76. return null;
  77. }
  78. public uint SQLGetID(string sql)
  79. {
  80. bool connected = IsConnect();
  81. if (connected)
  82. {
  83. SQLcom = new(sql, Connection);
  84. object obj = SQLcom.ExecuteScalar();
  85. return (uint)obj;
  86. }
  87. else return 0;
  88. }
  89. public void Close()
  90. {
  91. Connection.Close();
  92. }
  93. }
  94. }