comparison OrthancFramework/Sources/Enumerations.h @ 5809:023a99146dd0 attach-custom-data

merged find-refactoring -> attach-custom-data
author Alain Mazy <am@orthanc.team>
date Tue, 24 Sep 2024 12:53:43 +0200
parents 56352ae88120
children
comparison
equal deleted inserted replaced
5808:63c025cf6958 5809:023a99146dd0
170 ErrorCode_DatabaseCannotSerialize = 42 /*!< Database could not serialize access due to concurrent update, the transaction should be retried */, 170 ErrorCode_DatabaseCannotSerialize = 42 /*!< Database could not serialize access due to concurrent update, the transaction should be retried */,
171 ErrorCode_Revision = 43 /*!< A bad revision number was provided, which might indicate conflict between multiple writers */, 171 ErrorCode_Revision = 43 /*!< A bad revision number was provided, which might indicate conflict between multiple writers */,
172 ErrorCode_MainDicomTagsMultiplyDefined = 44 /*!< A main DICOM Tag has been defined multiple times for the same resource level */, 172 ErrorCode_MainDicomTagsMultiplyDefined = 44 /*!< A main DICOM Tag has been defined multiple times for the same resource level */,
173 ErrorCode_ForbiddenAccess = 45 /*!< Access to a resource is forbidden */, 173 ErrorCode_ForbiddenAccess = 45 /*!< Access to a resource is forbidden */,
174 ErrorCode_DuplicateResource = 46 /*!< Duplicate resource */, 174 ErrorCode_DuplicateResource = 46 /*!< Duplicate resource */,
175 ErrorCode_IncompatibleConfigurations = 47 /*!< Your configuration file contains configuration that are mutually incompatible */,
175 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */, 176 ErrorCode_SQLiteNotOpened = 1000 /*!< SQLite: The database is not opened */,
176 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */, 177 ErrorCode_SQLiteAlreadyOpened = 1001 /*!< SQLite: Connection is already open */,
177 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */, 178 ErrorCode_SQLiteCannotOpen = 1002 /*!< SQLite: Unable to open the database */,
178 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */, 179 ErrorCode_SQLiteStatementAlreadyUsed = 1003 /*!< SQLite: This cached statement is already being referred to */,
179 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */, 180 ErrorCode_SQLiteExecute = 1004 /*!< SQLite: Cannot execute a command */,
181 ErrorCode_SQLiteCommitWithoutTransaction = 1006 /*!< SQLite: Committing a nonexistent transaction */, 182 ErrorCode_SQLiteCommitWithoutTransaction = 1006 /*!< SQLite: Committing a nonexistent transaction */,
182 ErrorCode_SQLiteRegisterFunction = 1007 /*!< SQLite: Unable to register a function */, 183 ErrorCode_SQLiteRegisterFunction = 1007 /*!< SQLite: Unable to register a function */,
183 ErrorCode_SQLiteFlush = 1008 /*!< SQLite: Unable to flush the database */, 184 ErrorCode_SQLiteFlush = 1008 /*!< SQLite: Unable to flush the database */,
184 ErrorCode_SQLiteCannotRun = 1009 /*!< SQLite: Cannot run a cached statement */, 185 ErrorCode_SQLiteCannotRun = 1009 /*!< SQLite: Cannot run a cached statement */,
185 ErrorCode_SQLiteCannotStep = 1010 /*!< SQLite: Cannot step over a cached statement */, 186 ErrorCode_SQLiteCannotStep = 1010 /*!< SQLite: Cannot step over a cached statement */,
186 ErrorCode_SQLiteBindOutOfRange = 1011 /*!< SQLite: Bing a value while out of range (serious error) */, 187 ErrorCode_SQLiteBindOutOfRange = 1011 /*!< SQLite: Bind a value while out of range (serious error) */,
187 ErrorCode_SQLitePrepareStatement = 1012 /*!< SQLite: Cannot prepare a cached statement */, 188 ErrorCode_SQLitePrepareStatement = 1012 /*!< SQLite: Cannot prepare a cached statement */,
188 ErrorCode_SQLiteTransactionAlreadyStarted = 1013 /*!< SQLite: Beginning the same transaction twice */, 189 ErrorCode_SQLiteTransactionAlreadyStarted = 1013 /*!< SQLite: Beginning the same transaction twice */,
189 ErrorCode_SQLiteTransactionCommit = 1014 /*!< SQLite: Failure when committing the transaction */, 190 ErrorCode_SQLiteTransactionCommit = 1014 /*!< SQLite: Failure when committing the transaction */,
190 ErrorCode_SQLiteTransactionBegin = 1015 /*!< SQLite: Cannot start a transaction */, 191 ErrorCode_SQLiteTransactionBegin = 1015 /*!< SQLite: Cannot start a transaction */,
191 ErrorCode_DirectoryOverFile = 2000 /*!< The directory to be created is already occupied by a regular file */, 192 ErrorCode_DirectoryOverFile = 2000 /*!< The directory to be created is already occupied by a regular file */,