This file describes extensively as the information is organized in the database.
To Know  how to access them read by modifying_db.txt
The information is organized in tables, depending on your the self type.
Each table can be seen as a set of rows and columns in whose intersection is accessible and modified information using standard SQL.

TABLE clase (control types, one row for class )
    id         INTEGER      ,PRIMARY KEY, Internal identifier
    nombre     VARCHAR      , UNIQUE,	  Class Name
    tipo_id    INT,			, Type identifier, one element from table type
    prg_id     INTEGER      , number of control type
    sentencia  VARCHAR (128), sentence of control creation
    width      INTEGER		, default witdth
    height     INTEGER		, default height
    style      VARCHAR (32)	, default style
    style_ex   VARCHAR (64) , default styles_ex
	state      VARCHAR (64) , default state
    habilitado BOOLEAN		; 1 for anable, 0 for disable

TABLE dependencias (Dependencies between elements )
    id         INTEGER      ,PRIMARY KEY, Internal identifier
    type       VARCHAR (32) , type of Dependence (FUNC= dunctions, INCL= Includes)
    pri_id     INT          , Id in clases Table
    sec_id     INT          , Id in snippet Table
    terc_id    INT          , without use
    orden      INT          , process order
    habilitado INTEGER (1)	, 1 for anable, 0 for disable

TABLE diccionario ( Mechanism of data dictionary )
    entrada    VARCHAR (90) , Data to dearch
    salida     VARCHAR (126), Output data
    contexto   VARCHAR (90)	, Context search
    habilitado TINYINT (1)  , 1 for anable, 0 for disable

TABLE listas ( List of date order by category )
    id       INTEGER        ,PRIMARY KEY, Internal identifier
    item     VARCHAR (150)  , Data
    category VARCHAR (60)   , Category Group
    orden    SMALLINT (6)   , Order by data
    value    SMALLINT (6)   , Without use mut by 99
    tip      VARCHAR (1024) , Tips of item (optional)
    enable   TINYINT (1)    , 1 for anable, 0 for disable

TABLE menues ( Main menu items )
    id         INTEGER      ,PRIMARY KEY, Internal identifier
    texto      VARCHAR (32) , Text of menu
    x          INTEGER      , Menu location number
    y          INTEGER      , Location number de sub item in menu (0 for main)
    comando    VARCHAR (64) , variable in Msg Loop a excute (mut be declarated global)
    postevento VARCHAR (64) , without use (reserved by event program mode)
    status     BOOLEAN		, without use (reserved by event program mode)
    radio      BOOLEAN		, Radio Style? 1=yes, 0 = No
    checked    BOOLEAN		, Radio Checked? 1=yes, 0 = No
    icono      BLOB (4096)	, Recurese Icon number (within iconset.dll)
    tip        VARCHAR (50) , Tip to show, mouse over
    habilitado BOOLEAN      , 1 for anable, 0 for disable

TABLE propiedades ( Properities for controls and windows )
    id         INTEGER      , PRIMARY KEY, Internal identifier
    name       VARCHAR (32) , name of property
    label      VARCHAR (128), coloquial name
    metodo     VARCHAR (32) , Function used to edit the property value
    parametros VARCHAR (32) , Method parameters
    validacion VARCHAR (64) , Input validation (Incomplete)
    preevento  VARCHAR (255), Sentence autoit executed before Method function
    postevento VARCHAR (255), Sentence autoit executed after Method function,
    Tip        VARCHAR (250), Tip to show when mouse hover
    orden      INT          , Order by property
    mcl        INTEGER      , Column in MCL matrix where save property modified
    enable     BOOLEAN      , 1 for anable, 0 for disable

TABLE relaciones ( Relation between elements )
    id         INTEGER      , PRIMARY KEY, Internal identifier
    clase      VARCHAR (3)	, clase of Relation (CP = control - property,
								CS = control - Style, CX = Control - style_Ex,
								CE = Control - State, CH = Control - sub control,
    pri        INTEGER      , Id in table Clases
    sec        INTEGER      , Id in table clases or List (depend of clase)
    orden      INTEGER,		, order by index (have precedence over orden in other tables)
    aux_01     VARCHAR (32)	, without use (reserved by future)
    aux_02     VARCHAR (32) , without use (reserved by future)
    aux_03     VARCHAR (32)	, without use (reserved by future)
    habilitado BOOLEAN      , 1 for anable, 0 for disable

TABLE sentencias ( Code SQL prepared and used for guibuilder. It call with sentence DbPrep, DbPrep2, DbPrep3, etc.)
    id          INTEGER     , PRIMARY KEY, Internal identifier
    nombre      VARCHAR (64), name of sentence (search for this)
    descripcion VARCHAR (255), description
    sentencias  VARCHAR (511), SQL code
    habilitado  BOOL         , 1 for anable, 0 for disable

TABLE snippet ( Code pieces to include in source autoit generate )
    id          INTEGER      , PRIMARY KEY, Internal identifier
    descripcion VARCHAR (255), Code Desciption
    codigo      VARCHAR (300), Code Text
    type        VARCHAR (16) , Type Code (FUNC= Function, INCL= Include)
    habilitado  BOOLEAN      , 1 for anable, 0 for disable

TABLE tipo ( Type of code )
    id         INTEGER 		 , PRIMARY KEY, Internal identifier
    nombre     VARCHAR (32)  , Name of type
    habilitado BOOLEAN

TABLE toolbar ( Main toolbar elements )
    id         INTEGER       , PRIMARY KEY, Internal identifier
    texto      VARCHAR (32)  , Text Description
    x          INTEGER       , Location within row
    y          INTEGER       , Row Number Location.
    comando    VARCHAR (64)  , variable in Msg Loop a excute (mut be declarated global)
    postevento VARCHAR (64), , Not used now
    checked    BOOLEAN       , Can stay pressed?. 0=No, 1= Yes
    icono      BLOB (4096)	 , Recurse Icon number (within iconset.dll)
    tip        VARCHAR (50)  , Tip to show when mouse hover
    habilitado BOOLEAN       , 1 for anable, 0 for disable

CREATE TABLE variable ( variables save in database, it mut declared  global)
    nombre VARCHAR (255) 	 , PRIMARY KEY name of variable (without $ initial)
    valor  VARCHAR (255)	 , Value save
    tipo   VARCHAR (3)   	 , Variable type.  for omision UND = not enable.
