comparison OrthancServer/DatabaseWrapper.h @ 1668:de1413733c97 db-changes

reconstructing main dicom tags
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 30 Sep 2015 17:18:39 +0200
parents 0c58f189782d
children 16955f8fec4d
comparison
equal deleted inserted replaced
1667:9e875db36aef 1668:de1413733c97
69 SQLite::Statement& s, 69 SQLite::Statement& s,
70 uint32_t maxResults); 70 uint32_t maxResults);
71 71
72 void ClearTable(const std::string& tableName); 72 void ClearTable(const std::string& tableName);
73 73
74 void ExecuteUpgrade5To6(IStorageArea& storageArea);
75
76 public: 74 public:
77 DatabaseWrapper(const std::string& path); 75 DatabaseWrapper(const std::string& path);
78 76
79 DatabaseWrapper(); 77 DatabaseWrapper();
80 78
129 int64_t id); 127 int64_t id);
130 128
131 virtual bool LookupAttachment(FileInfo& attachment, 129 virtual bool LookupAttachment(FileInfo& attachment,
132 int64_t id, 130 int64_t id,
133 FileContentType contentType); 131 FileContentType contentType);
132
133 virtual void ClearMainDicomTags(int64_t id);
134 134
135 virtual void SetMainDicomTag(int64_t id, 135 virtual void SetMainDicomTag(int64_t id,
136 const DicomTag& tag, 136 const DicomTag& tag,
137 const std::string& value); 137 const std::string& value);
138 138