;;;;;;;;;;;;;;;;;;;;
;modificando_db.txt;
;;;;;;;;;;;;;;;;;;;;

The connection to the database is only local.
The database, as seen by the program as the repository of information is simply a file in your file system.
In order to view, modify, delete or add information in this is a necessary program who understands how this the same saved.
The database engine chosen is Sqlite database and the information can be modified with any manager who support the motor.

I am currently using sqlite Studio 3.0.3 (https://sqlitestudio.pl/index.rvt), can be any other inclued Web.
Even once opened the Manager will be you must select/open the file guibuilder.bin in the program directory.
The information is organized in tables (Relational).
To learn how it is organized is to read the file structure_db.txt.

To access the database from Guibuilder is organized as follows:


|--------------------------------------------------------------------------------|
|                            							                         |
|                                  GUIBUILDER                                    |
|                                                      |-------------------------|
|                                                      | #include "base_db.au3"  | 	; Aditional functions
|--------------------------------------------------------------------------------|
|                             #include "conexion_db.au3"                         |	; Function high Level
|--------------------------------------------------------------------------------|
|                              #include <sqlite.au3>                             |	; Conextor, Low Level
|--------------------------------------------------------------------------------|
|                                sqlite3.dll                                     |	; Standard Library
|--------------------------------------------------------------------------------|
|                               GUIBUILDER.BIN                                   |	; Database File
|--------------------------------------------------------------------------------|

