|
Working with databases
The functions for working with databases apply the popular and easy-to-use SQLite engine. The convenient feature of this engine is that the entire database is located in a single file on a user PC's hard disk.
The functions allow for convenient creation of tables, adding data to them, performing modifications and sampling using simple SQL requests:
Queries allow using statistical and mathematical functions.
The functions for working with databases allow you to replace the most repetitive large data array handling operations with SQL requests, so that it is often possible to use the DatabaseExecute/DatabasePrepare calls instead of programming complex loops and comparisons. Use the DatabaseReadBind function to conveniently obtain query results in a ready-made structure. The function allows reading all record fields at once within a single call.
To accelerate reading, writing and modification, a database can be opened/created in RAM with the DATABASE_OPEN_MEMORY flag, although such a database is available only to a specific application and is not shared. When working with databases located on the hard disk, bulk data inserts/changes should be wrapped in transactions using DatabaseTransactionBegin/DatabaseTransactionCommit/DatabaseTransactionRollback. This accelerates the process hundreds of times.
To start working with the functions, read the article SQLite: Native handling of SQL databases in MQL5.
Function |
Action |
---|---|
Opens or creates a database in a specified file |
|
Closes a database |
|
Imports data from a file into a table |
|
Exports a table or an SQL request execution result to a CSV file |
|
Prints a table or an SQL request execution result in the Experts journal |
|
Checks the presence of the table in a database |
|
Executes a request to a specified database |
|
Creates a handle of a request, which can then be executed using DatabaseRead() |
|
Resets a request, like after calling DatabasePrepare() |
|
Sets a parameter value in a request |
|
Sets an array as a parameter value |
|
Moves to the next entry as a result of a request |
|
Moves to the next record and reads data into the structure from it |
|
Removes a request created in DatabasePrepare() |
|
Starts transaction execution |
|
Completes transaction execution |
|
Rolls back transactions |
|
Gets the number of fields in a request |
|
Gets a field name by index |
|
Gets a field type by index |
|
Gets a field size in bytes |
|
Gets a field value as a string from the current record |
|
Gets the int type value from the current record |
|
Gets the long type value from the current record |
|
Gets the double type value from the current record |
|
Gets a field value as an array from the current record |
Example:
select
|