- database.sql defines the schema of the VISULOX database.

# Files are in UTF-8
- The *.view files are tcl dict structure with data and read before *.conf
- The *.conf files are tcl dict structure with data

presql = SQL before filling in data from <table><columns><rows>
postsql = SQL after anything
tablename = Any kind of table name
Columns to fill with the rows
global  = Generates the "special" view to get only the latest entry of a record from any node


{
    # { This is the comment}
    tablename {
        # { This is the comment}
        global {list of columns}
        columns {list of columns}
        rows  {
            {list of values
            asdasdasdhjk}
            {list of values}
            {list of values}
        }
    }
    # { This is the comment}
    presql  {
        sql;
        sql;
        sql;
    }

    postsql  {
        -- asdasdasd
        sql;
        sql;
    }

}
