MQL5Book/Scripts/p7/DBinit.mq5
super.admin 1c8e83ce31 convert
2025-05-30 16:09:41 +02:00

22 lines
1,005 B
MQL5

//+------------------------------------------------------------------+
//| DBinit.mq5 |
//| Copyright 2022, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property description "Creates a new or opens existing database."
#property script_show_inputs
input string Database = "MQL5Book/DB/Example1";
#include "..\..\Include\DBSQLite.mqh"
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
DBSQLite db(Database);
PRTF(db.getHandle()); // 65537 / ok
PRTF(FileIsExist(Database + ".sqlite")); // true / ok
}
//+------------------------------------------------------------------+