Database.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // Created by Иван_Архипов on 17.11.2017.
  3. //
  4. #ifndef LOTRO_DAT_PATCHER_DATABASE_H
  5. #define LOTRO_DAT_PATCHER_DATABASE_H
  6. #include "Common/SQLite/sqlite3.h"
  7. #include <string>
  8. extern "C++"
  9. {
  10. namespace LOTRO_DAT
  11. {
  12. class BinaryData;
  13. class Database {
  14. public:
  15. Database();
  16. explicit Database(const std::string &filename);
  17. ~Database();
  18. void InitDatabase(const std::string &filename);
  19. void PushFile(const BinaryData &binary_data, const std::u16string &text_data, const std::string &options);
  20. void GetFile();
  21. void GetFile(long long file_id);
  22. private:
  23. void ExecSql(const std::string &sql);
  24. sqlite3* db_;
  25. sqlite3_stmt* insert_request_;
  26. sqlite3_stmt* get_text_;
  27. sqlite3_stmt* get_binary_;
  28. const std::string CreateTableCommand_ = "CREATE TABLE IF NOT EXISTS `patch_data` ( "
  29. "`binary_data` BLOB, "
  30. "`text_data` TEXT, "
  31. "`options` TEXT NOT NULL);";
  32. const std::string InsertFileCommand_ = "INSERT INTO patch_data "
  33. "(binary_data, text_data, options) "
  34. "VALUES (?, ?, ?); ";
  35. };
  36. }
  37. }
  38. #endif