Files
mql5-skills/skills/mql5/references/docs/30-database/1053-database-databasefinalize.md
T
2026-06-23 21:47:51 +08:00

29 lines
583 B
Markdown
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# DatabaseFinalize
Removes a request created in [DatabasePrepare(](/en/docs/database/databaseprepare)).
```
void  DatabaseFinalize(
   int  request      // request handle received in DatabasePrepare
   );
```
Parameters
request
[in]  Request handle received in DatabasePrepare().
Return Value
None.
Note
If the handle is invalid, the function sets the ERR_DATABASE_INVALID_HANDLE error. You can check the error using GetLastError().
See also
[DatabasePrepare](/en/docs/database/databaseprepare), [DatabaseExecute](/en/docs/database/databaseexecute)