<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.br.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>30 Jul 2025 07:24:44 Z</lastBuildDate><pubDate>8 Jul 2025 05:41:10 Z</pubDate><description>//******************************************************************************&#13;
// CONTINUAÇÃO DA CLASSE Dct2Sql - SUPORTE COMPLETO PARA 12 SGBDs&#13;
// MÉTODOS DE MAPEAMENTO E GERAÇÃO SQL&#13;
//******************************************************************************&#13;
&#13;
//==============================================================================&#13;
// MÉTODOS DE MAPEAMENTO DE TIPOS&#13;
//==============================================================================&#13;
&#13;
PRIVATE&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoCampo&#13;
// DESCRIÇÃO: Mapeia tipos WinDev para tipos SQL específicos do SGBD&#13;
// PARÂMETROS:&#13;
//   sTipoWinDev: Tipo do campo no WinDev&#13;
//   nTamanho: Tamanho do campo&#13;
//   nDecimais: Número de casas decimais&#13;
// RETORNO: string - Tipo SQL correspondente&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoCampo(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
&#13;
```&#13;
SWITCH m_sSgbdTipo&#13;
    CASE "MYSQL", "MARIADB"&#13;
        RESULT MapearTipoMySQL(sTipoWinDev, nTamanho, nDecimais)&#13;
        &#13;
    CASE "POSTGRESQL"&#13;
        RESULT MapearTipoPostgreSQL(sTipoWinDev, nTamanho, nDecimais)&#13;
        &#13;
    CASE "MSSQL"&#13;
        RESULT MapearTipoSQLServer(sTipoWinDev, nTamanho, nDecimais)&#13;
        &#13;
    CASE "ORACLE"&#13;
        RESULT MapearTipoOracle(sTipoWinDev, nTamanho, nDecimais)&#13;
        &#13;
    CASE "SQLITE"&#13;
        RESULT MapearTipoSQLite(sTipoWinDev, nTamanho, nDecimais)&#13;
        &#13;
    CASE "FIREBIRD"&#13;
        RESULT MapearTipoFirebird(sTipoWinDev, nTamanho, nDecimais)&#13;
        &#13;
    CASE "INFORMIX"&#13;
        RESULT MapearTipoInformix(sTipoWinDev, nTamanho, nDecimais)&#13;
        &#13;
    CASE "SYBASE"&#13;
        RESULT MapearTipoSybase(sTipoWinDev, nTamanho, nDecimais)&#13;
        &#13;
    CASE "HFSQL"&#13;
        RESULT MapearTipoHFSQL(sTipoWinDev, nTamanho, nDecimais)&#13;
        &#13;
    CASE "TERADATA"&#13;
        RESULT MapearTipoTeradata(sTipoWinDev, nTamanho, nDecimais)&#13;
        &#13;
    CASE "AS400", "DB2"&#13;
        RESULT MapearTipoDB2(sTipoWinDev, nTamanho, nDecimais)&#13;
        &#13;
    OTHER CASE&#13;
        // Fallback para MySQL como padrão&#13;
        RESULT MapearTipoMySQL(sTipoWinDev, nTamanho, nDecimais)&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoMySQL&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoMySQL(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
SWITCH Upper(sTipoWinDev)&#13;
CASE “STRING”, “TEXT”&#13;
IF nTamanho &lt;= 255 THEN&#13;
RESULT “VARCHAR(” + nTamanho + “)”&#13;
ELSE IF nTamanho &lt;= 65535 THEN&#13;
RESULT “TEXT”&#13;
ELSE&#13;
RESULT “LONGTEXT”&#13;
END&#13;
&#13;
```&#13;
    CASE "INT", "INTEGER"&#13;
        IF nTamanho &lt;= 4 THEN&#13;
            RESULT "TINYINT"&#13;
        ELSE IF nTamanho &lt;= 6 THEN&#13;
            RESULT "SMALLINT"&#13;
        ELSE IF nTamanho &lt;= 9 THEN&#13;
            RESULT "MEDIUMINT"&#13;
        ELSE IF nTamanho &lt;= 11 THEN&#13;
            RESULT "INT"&#13;
        ELSE&#13;
            RESULT "BIGINT"&#13;
        END&#13;
        &#13;
    CASE "REAL", "NUMERIC", "CURRENCY"&#13;
        IF nDecimais = 0 THEN&#13;
            RESULT "DECIMAL(" + nTamanho + ")"&#13;
        ELSE&#13;
            RESULT "DECIMAL(" + nTamanho + "," + nDecimais + ")"&#13;
        END&#13;
        &#13;
    CASE "DATE"&#13;
        RESULT "DATE"&#13;
        &#13;
    CASE "TIME"&#13;
        RESULT "TIME"&#13;
        &#13;
    CASE "DATETIME", "TIMESTAMP"&#13;
        RESULT "DATETIME"&#13;
        &#13;
    CASE "BOOLEAN"&#13;
        RESULT "TINYINT(1)"&#13;
        &#13;
    CASE "MEMO"&#13;
        RESULT "LONGTEXT"&#13;
        &#13;
    CASE "BINARY", "IMAGE"&#13;
        RESULT "LONGBLOB"&#13;
        &#13;
    CASE "DURATION"&#13;
        RESULT "BIGINT"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT "VARCHAR(255)"&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoPostgreSQL&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoPostgreSQL(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
SWITCH Upper(sTipoWinDev)&#13;
CASE “STRING”, “TEXT”&#13;
IF nTamanho &lt;= 255 THEN&#13;
RESULT “VARCHAR(” + nTamanho + “)”&#13;
ELSE&#13;
RESULT “TEXT”&#13;
END&#13;
&#13;
```&#13;
    CASE "INT", "INTEGER"&#13;
        IF nTamanho &lt;= 5 THEN&#13;
            RESULT "SMALLINT"&#13;
        ELSE IF nTamanho &lt;= 10 THEN&#13;
            RESULT "INTEGER"&#13;
        ELSE&#13;
            RESULT "BIGINT"&#13;
        END&#13;
        &#13;
    CASE "REAL", "NUMERIC", "CURRENCY"&#13;
        IF nDecimais = 0 THEN&#13;
            RESULT "NUMERIC(" + nTamanho + ")"&#13;
        ELSE&#13;
            RESULT "NUMERIC(" + nTamanho + "," + nDecimais + ")"&#13;
        END&#13;
        &#13;
    CASE "DATE"&#13;
        RESULT "DATE"&#13;
        &#13;
    CASE "TIME"&#13;
        RESULT "TIME"&#13;
        &#13;
    CASE "DATETIME", "TIMESTAMP"&#13;
        RESULT "TIMESTAMP"&#13;
        &#13;
    CASE "BOOLEAN"&#13;
        RESULT "BOOLEAN"&#13;
        &#13;
    CASE "MEMO"&#13;
        RESULT "TEXT"&#13;
        &#13;
    CASE "BINARY", "IMAGE"&#13;
        RESULT "BYTEA"&#13;
        &#13;
    CASE "DURATION"&#13;
        RESULT "INTERVAL"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT "VARCHAR(255)"&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoSQLServer&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoSQLServer(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
SWITCH Upper(sTipoWinDev)&#13;
CASE “STRING”, “TEXT”&#13;
IF nTamanho &lt;= 8000 THEN&#13;
RESULT “NVARCHAR(” + nTamanho + “)”&#13;
ELSE&#13;
RESULT “NVARCHAR(MAX)”&#13;
END&#13;
&#13;
```&#13;
    CASE "INT", "INTEGER"&#13;
        IF nTamanho &lt;= 3 THEN&#13;
            RESULT "TINYINT"&#13;
        ELSE IF nTamanho &lt;= 5 THEN&#13;
            RESULT "SMALLINT"&#13;
        ELSE IF nTamanho &lt;= 10 THEN&#13;
            RESULT "INT"&#13;
        ELSE&#13;
            RESULT "BIGINT"&#13;
        END&#13;
        &#13;
    CASE "REAL", "NUMERIC", "CURRENCY"&#13;
        IF nDecimais = 0 THEN&#13;
            RESULT "NUMERIC(" + nTamanho + ")"&#13;
        ELSE&#13;
            RESULT "NUMERIC(" + nTamanho + "," + nDecimais + ")"&#13;
        END&#13;
        &#13;
    CASE "DATE"&#13;
        RESULT "DATE"&#13;
        &#13;
    CASE "TIME"&#13;
        RESULT "TIME"&#13;
        &#13;
    CASE "DATETIME", "TIMESTAMP"&#13;
        RESULT "DATETIME2"&#13;
        &#13;
    CASE "BOOLEAN"&#13;
        RESULT "BIT"&#13;
        &#13;
    CASE "MEMO"&#13;
        RESULT "NVARCHAR(MAX)"&#13;
        &#13;
    CASE "BINARY", "IMAGE"&#13;
        RESULT "VARBINARY(MAX)"&#13;
        &#13;
    CASE "DURATION"&#13;
        RESULT "BIGINT"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT "NVARCHAR(255)"&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoOracle&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoOracle(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
SWITCH Upper(sTipoWinDev)&#13;
CASE “STRING”, “TEXT”&#13;
IF nTamanho &lt;= 4000 THEN&#13;
RESULT “VARCHAR2(” + nTamanho + “ CHAR)”&#13;
ELSE&#13;
RESULT “CLOB”&#13;
END&#13;
&#13;
```&#13;
    CASE "INT", "INTEGER"&#13;
        IF nTamanho &lt;= 3 THEN&#13;
            RESULT "NUMBER(3)"&#13;
        ELSE IF nTamanho &lt;= 5 THEN&#13;
            RESULT "NUMBER(5)"&#13;
        ELSE IF nTamanho &lt;= 10 THEN&#13;
            RESULT "NUMBER(10)"&#13;
        ELSE&#13;
            RESULT "NUMBER(19)"&#13;
        END&#13;
        &#13;
    CASE "REAL", "NUMERIC", "CURRENCY"&#13;
        IF nDecimais = 0 THEN&#13;
            RESULT "NUMBER(" + nTamanho + ")"&#13;
        ELSE&#13;
            RESULT "NUMBER(" + nTamanho + "," + nDecimais + ")"&#13;
        END&#13;
        &#13;
    CASE "DATE"&#13;
        RESULT "DATE"&#13;
        &#13;
    CASE "TIME"&#13;
        RESULT "TIMESTAMP"&#13;
        &#13;
    CASE "DATETIME", "TIMESTAMP"&#13;
        RESULT "TIMESTAMP"&#13;
        &#13;
    CASE "BOOLEAN"&#13;
        RESULT "NUMBER(1)"&#13;
        &#13;
    CASE "MEMO"&#13;
        RESULT "CLOB"&#13;
        &#13;
    CASE "BINARY", "IMAGE"&#13;
        RESULT "BLOB"&#13;
        &#13;
    CASE "DURATION"&#13;
        RESULT "INTERVAL DAY TO SECOND"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT "VARCHAR2(255 CHAR)"&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoSQLite&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoSQLite(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
SWITCH Upper(sTipoWinDev)&#13;
CASE “STRING”, “TEXT”, “MEMO”&#13;
RESULT “TEXT”&#13;
&#13;
```&#13;
    CASE "INT", "INTEGER"&#13;
        RESULT "INTEGER"&#13;
        &#13;
    CASE "REAL", "NUMERIC", "CURRENCY"&#13;
        RESULT "REAL"&#13;
        &#13;
    CASE "DATE", "TIME", "DATETIME", "TIMESTAMP"&#13;
        RESULT "TEXT"&#13;
        &#13;
    CASE "BOOLEAN"&#13;
        RESULT "INTEGER"&#13;
        &#13;
    CASE "BINARY", "IMAGE"&#13;
        RESULT "BLOB"&#13;
        &#13;
    CASE "DURATION"&#13;
        RESULT "INTEGER"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT "TEXT"&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoFirebird&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoFirebird(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
SWITCH Upper(sTipoWinDev)&#13;
CASE “STRING”, “TEXT”&#13;
IF nTamanho &lt;= 32767 THEN&#13;
RESULT “VARCHAR(” + nTamanho + “)”&#13;
ELSE&#13;
RESULT “BLOB SUB_TYPE TEXT”&#13;
END&#13;
&#13;
```&#13;
    CASE "INT", "INTEGER"&#13;
        IF nTamanho &lt;= 4 THEN&#13;
            RESULT "SMALLINT"&#13;
        ELSE IF nTamanho &lt;= 9 THEN&#13;
            RESULT "INTEGER"&#13;
        ELSE&#13;
            RESULT "BIGINT"&#13;
        END&#13;
        &#13;
    CASE "REAL", "NUMERIC", "CURRENCY"&#13;
        IF nDecimais = 0 THEN&#13;
            RESULT "NUMERIC(" + nTamanho + ")"&#13;
        ELSE&#13;
            RESULT "NUMERIC(" + nTamanho + "," + nDecimais + ")"&#13;
        END&#13;
        &#13;
    CASE "DATE"&#13;
        RESULT "DATE"&#13;
        &#13;
    CASE "TIME"&#13;
        RESULT "TIME"&#13;
        &#13;
    CASE "DATETIME", "TIMESTAMP"&#13;
        RESULT "TIMESTAMP"&#13;
        &#13;
    CASE "BOOLEAN"&#13;
        RESULT "SMALLINT"&#13;
        &#13;
    CASE "MEMO"&#13;
        RESULT "BLOB SUB_TYPE TEXT"&#13;
        &#13;
    CASE "BINARY", "IMAGE"&#13;
        RESULT "BLOB"&#13;
        &#13;
    CASE "DURATION"&#13;
        RESULT "BIGINT"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT "VARCHAR(255)"&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoInformix&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoInformix(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
SWITCH Upper(sTipoWinDev)&#13;
CASE “STRING”, “TEXT”&#13;
IF nTamanho &lt;= 255 THEN&#13;
RESULT “VARCHAR(” + nTamanho + “)”&#13;
ELSE IF nTamanho &lt;= 32739 THEN&#13;
RESULT “LVARCHAR(” + nTamanho + “)”&#13;
ELSE&#13;
RESULT “TEXT”&#13;
END&#13;
&#13;
```&#13;
    CASE "INT", "INTEGER"&#13;
        IF nTamanho &lt;= 3 THEN&#13;
            RESULT "SMALLINT"&#13;
        ELSE IF nTamanho &lt;= 10 THEN&#13;
            RESULT "INTEGER"&#13;
        ELSE&#13;
            RESULT "INT8"&#13;
        END&#13;
        &#13;
    CASE "REAL", "NUMERIC", "CURRENCY"&#13;
        IF nDecimais = 0 THEN&#13;
            RESULT "DECIMAL(" + nTamanho + ")"&#13;
        ELSE&#13;
            RESULT "DECIMAL(" + nTamanho + "," + nDecimais + ")"&#13;
        END&#13;
        &#13;
    CASE "DATE"&#13;
        RESULT "DATE"&#13;
        &#13;
    CASE "TIME"&#13;
        RESULT "DATETIME HOUR TO SECOND"&#13;
        &#13;
    CASE "DATETIME", "TIMESTAMP"&#13;
        RESULT "DATETIME YEAR TO SECOND"&#13;
        &#13;
    CASE "BOOLEAN"&#13;
        RESULT "BOOLEAN"&#13;
        &#13;
    CASE "MEMO"&#13;
        RESULT "TEXT"&#13;
        &#13;
    CASE "BINARY", "IMAGE"&#13;
        RESULT "BYTE"&#13;
        &#13;
    CASE "DURATION"&#13;
        RESULT "INTERVAL DAY TO SECOND"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT "VARCHAR(255)"&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoSybase&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoSybase(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
SWITCH Upper(sTipoWinDev)&#13;
CASE “STRING”, “TEXT”&#13;
IF nTamanho &lt;= 255 THEN&#13;
RESULT “VARCHAR(” + nTamanho + “)”&#13;
ELSE&#13;
RESULT “TEXT”&#13;
END&#13;
&#13;
```&#13;
    CASE "INT", "INTEGER"&#13;
        IF nTamanho &lt;= 3 THEN&#13;
            RESULT "TINYINT"&#13;
        ELSE IF nTamanho &lt;= 5 THEN&#13;
            RESULT "SMALLINT"&#13;
        ELSE IF nTamanho &lt;= 10 THEN&#13;
            RESULT "INT"&#13;
        ELSE&#13;
            RESULT "BIGINT"&#13;
        END&#13;
        &#13;
    CASE "REAL", "NUMERIC", "CURRENCY"&#13;
        IF nDecimais = 0 THEN&#13;
            RESULT "NUMERIC(" + nTamanho + ")"&#13;
        ELSE&#13;
            RESULT "NUMERIC(" + nTamanho + "," + nDecimais + ")"&#13;
        END&#13;
        &#13;
    CASE "DATE"&#13;
        RESULT "DATE"&#13;
        &#13;
    CASE "TIME"&#13;
        RESULT "TIME"&#13;
        &#13;
    CASE "DATETIME", "TIMESTAMP"&#13;
        RESULT "DATETIME"&#13;
        &#13;
    CASE "BOOLEAN"&#13;
        RESULT "BIT"&#13;
        &#13;
    CASE "MEMO"&#13;
        RESULT "TEXT"&#13;
        &#13;
    CASE "BINARY", "IMAGE"&#13;
        RESULT "IMAGE"&#13;
        &#13;
    CASE "DURATION"&#13;
        RESULT "BIGINT"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT "VARCHAR(255)"&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoHFSQL&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoHFSQL(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
SWITCH Upper(sTipoWinDev)&#13;
CASE “STRING”, “TEXT”&#13;
RESULT “TEXT(” + nTamanho + “)”&#13;
&#13;
```&#13;
    CASE "INT", "INTEGER"&#13;
        IF nTamanho &lt;= 1 THEN&#13;
            RESULT "1-BYTE INTEGER"&#13;
        ELSE IF nTamanho &lt;= 2 THEN&#13;
            RESULT "2-BYTE INTEGER"&#13;
        ELSE IF nTamanho &lt;= 4 THEN&#13;
            RESULT "4-BYTE INTEGER"&#13;
        ELSE&#13;
            RESULT "8-BYTE INTEGER"&#13;
        END&#13;
        &#13;
    CASE "REAL", "NUMERIC", "CURRENCY"&#13;
        IF nDecimais = 0 THEN&#13;
            RESULT "NUMERIC(" + nTamanho + ")"&#13;
        ELSE&#13;
            RESULT "NUMERIC(" + nTamanho + "," + nDecimais + ")"&#13;
        END&#13;
        &#13;
    CASE "DATE"&#13;
        RESULT "DATE"&#13;
        &#13;
    CASE "TIME"&#13;
        RESULT "TIME"&#13;
        &#13;
    CASE "DATETIME", "TIMESTAMP"&#13;
        RESULT "DATETIME"&#13;
        &#13;
    CASE "BOOLEAN"&#13;
        RESULT "BOOLEAN"&#13;
        &#13;
    CASE "MEMO"&#13;
        RESULT "TEXT MEMO"&#13;
        &#13;
    CASE "BINARY", "IMAGE"&#13;
        RESULT "BINARY MEMO"&#13;
        &#13;
    CASE "DURATION"&#13;
        RESULT "DURATION"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT "TEXT(255)"&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoTeradata&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoTeradata(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
SWITCH Upper(sTipoWinDev)&#13;
CASE “STRING”, “TEXT”&#13;
IF nTamanho &lt;= 64000 THEN&#13;
RESULT “VARCHAR(” + nTamanho + “)”&#13;
ELSE&#13;
RESULT “CLOB”&#13;
END&#13;
&#13;
```&#13;
    CASE "INT", "INTEGER"&#13;
        IF nTamanho &lt;= 3 THEN&#13;
            RESULT "BYTEINT"&#13;
        ELSE IF nTamanho &lt;= 5 THEN&#13;
            RESULT "SMALLINT"&#13;
        ELSE IF nTamanho &lt;= 10 THEN&#13;
            RESULT "INTEGER"&#13;
        ELSE&#13;
            RESULT "BIGINT"&#13;
        END&#13;
        &#13;
    CASE "REAL", "NUMERIC", "CURRENCY"&#13;
        IF nDecimais = 0 THEN&#13;
            RESULT "DECIMAL(" + nTamanho + ")"&#13;
        ELSE&#13;
            RESULT "DECIMAL(" + nTamanho + "," + nDecimais + ")"&#13;
        END&#13;
        &#13;
    CASE "DATE"&#13;
        RESULT "DATE"&#13;
        &#13;
    CASE "TIME"&#13;
        RESULT "TIME"&#13;
        &#13;
    CASE "DATETIME", "TIMESTAMP"&#13;
        RESULT "TIMESTAMP"&#13;
        &#13;
    CASE "BOOLEAN"&#13;
        RESULT "BYTEINT"&#13;
        &#13;
    CASE "MEMO"&#13;
        RESULT "CLOB"&#13;
        &#13;
    CASE "BINARY", "IMAGE"&#13;
        RESULT "BLOB"&#13;
        &#13;
    CASE "DURATION"&#13;
        RESULT "INTERVAL DAY TO SECOND"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT "VARCHAR(255)"&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: MapearTipoDB2&#13;
//——————————————————————————&#13;
PROCEDURE MapearTipoDB2(sTipoWinDev is string, nTamanho is int, nDecimais is int) : string&#13;
SWITCH Upper(sTipoWinDev)&#13;
CASE “STRING”, “TEXT”&#13;
IF nTamanho &lt;= 32704 THEN&#13;
RESULT “VARCHAR(” + nTamanho + “)”&#13;
ELSE&#13;
RESULT “CLOB”&#13;
END&#13;
&#13;
```&#13;
    CASE "INT", "INTEGER"&#13;
        IF nTamanho &lt;= 5 THEN&#13;
            RESULT "SMALLINT"&#13;
        ELSE IF nTamanho &lt;= 10 THEN&#13;
            RESULT "INTEGER"&#13;
        ELSE&#13;
            RESULT "BIGINT"&#13;
        END&#13;
        &#13;
    CASE "REAL", "NUMERIC", "CURRENCY"&#13;
        IF nDecimais = 0 THEN&#13;
            RESULT "DECIMAL(" + nTamanho + ")"&#13;
        ELSE&#13;
            RESULT "DECIMAL(" + nTamanho + "," + nDecimais + ")"&#13;
        END&#13;
        &#13;
    CASE "DATE"&#13;
        RESULT "DATE"&#13;
        &#13;
    CASE "TIME"&#13;
        RESULT "TIME"&#13;
        &#13;
    CASE "DATETIME", "TIMESTAMP"&#13;
        RESULT "TIMESTAMP"&#13;
        &#13;
    CASE "BOOLEAN"&#13;
        RESULT "SMALLINT"&#13;
        &#13;
    CASE "MEMO"&#13;
        RESULT "CLOB"&#13;
        &#13;
    CASE "BINARY", "IMAGE"&#13;
        RESULT "BLOB"&#13;
        &#13;
    CASE "DURATION"&#13;
        RESULT "BIGINT"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT "VARCHAR(255)"&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//==============================================================================&#13;
// MÉTODOS DE GERAÇÃO SQL ESPECÍFICOS POR SGBD&#13;
//==============================================================================&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: GerarSqlTabelas&#13;
// DESCRIÇÃO: Gera SQL para criação de todas as tabelas&#13;
// RETORNO: string - SQL das tabelas&#13;
//——————————————————————————&#13;
PROCEDURE GerarSqlTabelas() : string&#13;
sSql is string = “”&#13;
&#13;
```&#13;
IF m_bIncluirComentarios THEN&#13;
    sSql += GerarComentarioSql("=" * 60)&#13;
    sSql += GerarComentarioSql("CRIAÇÃO DE TABELAS")&#13;
    sSql += GerarComentarioSql("=" * 60)&#13;
    sSql += CR&#13;
END&#13;
&#13;
// Ordenar tabelas por ordem de criação&#13;
ArraySort(m_arrTabelas, asAscending, "nOrdemCriacao")&#13;
&#13;
FOR EACH stTab OF m_arrTabelas&#13;
    sSql += GerarSqlTabelaIndividual(stTab)&#13;
    sSql += CR&#13;
END&#13;
&#13;
m_sSqlTabelas = sSql&#13;
RESULT sSql&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: GerarSqlTabelaIndividual&#13;
// DESCRIÇÃO: Gera SQL para criação de uma tabela específica&#13;
// PARÂMETROS:&#13;
//   stTab: Estrutura da tabela&#13;
// RETORNO: string - SQL da tabela&#13;
//——————————————————————————&#13;
PROCEDURE GerarSqlTabelaIndividual(stTab is stTabela) : string&#13;
sSql is string = “”&#13;
sNomeTabela is string = EscaparNomeObjeto(stTab.sNome)&#13;
&#13;
```&#13;
IF m_bIncluirComentarios THEN&#13;
    sSql += GerarComentarioSql("Tabela: " + stTab.sNome)&#13;
    IF stTab.sComentario &lt;&gt; "" THEN&#13;
        sSql += GerarComentarioSql("Descrição: " + stTab.sComentario)&#13;
    END&#13;
END&#13;
&#13;
// Comando CREATE TABLE&#13;
sSql += "CREATE TABLE "&#13;
IF m_bGerarIfNotExists THEN&#13;
    sSql += GerarIfNotExists()&#13;
END&#13;
sSql += sNomeTabela + " (" + CR&#13;
&#13;
// Campos&#13;
nTotalCampos is int = ArraySize(stTab.arrCampos)&#13;
FOR i = 1 TO nTotalCampos&#13;
    sSql += "    " + GerarDefinicaoCampo(stTab.arrCampos[i])&#13;
    &#13;
    // Adicionar vírgula se não for o último campo&#13;
    IF i &lt; nTotalCampos OR stTab.bTemChavePrimaria THEN&#13;
        sSql += ","&#13;
    END&#13;
    sSql += CR&#13;
END&#13;
&#13;
// Chave primária&#13;
IF stTab.bTemChavePrimaria THEN&#13;
    sSql += GerarChavePrimaria(stTab)&#13;
END&#13;
&#13;
sSql += ")"&#13;
&#13;
// Opções específicas da tabela por SGBD&#13;
sSql += GerarOpcoesTabelaSgbd()&#13;
sSql += ";" + CR&#13;
&#13;
// Comentários da tabela (se suportado)&#13;
IF m_bIncluirComentarios AND stTab.sComentario &lt;&gt; "" THEN&#13;
    sSql += GerarComentarioTabela(sNomeTabela, stTab.sComentario)&#13;
END&#13;
&#13;
RESULT sSql&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: GerarDefinicaoCampo&#13;
// DESCRIÇÃO: Gera definição SQL de um campo&#13;
// PARÂMETROS:&#13;
//   stCampo: Estrutura do campo&#13;
// RETORNO: string - Definição SQL do campo&#13;
//——————————————————————————&#13;
PROCEDURE GerarDefinicaoCampo(stCampo is stCampo) : string&#13;
sSql is string = “”&#13;
sNomeCampo is string = EscaparNomeObjeto(stCampo.sNome)&#13;
&#13;
```&#13;
// Nome e tipo&#13;
sSql += sNomeCampo + " " + stCampo.sTipoSql&#13;
&#13;
// Auto incremento&#13;
IF stCampo.bAutoIncremento THEN&#13;
    sSql += " " + GerarAutoIncremento()&#13;
END&#13;
&#13;
// NOT NULL&#13;
IF stCampo.bObrigatorio THEN&#13;
    sSql += " NOT NULL"&#13;
ELSE&#13;
    sSql += " NULL"&#13;
END&#13;
&#13;
// Valor padrão&#13;
IF stCampo.sValorPadrao &lt;&gt; "" THEN&#13;
    sSql += " DEFAULT " + FormatarValorPadrao(stCampo.sValorPadrao, stCampo.sTipoSql)&#13;
END&#13;
&#13;
// Comentário do campo (se suportado)&#13;
IF m_bIncluirComentarios AND stCampo.sComentario &lt;&gt; "" THEN&#13;
    sSql += GerarComentarioCampo(stCampo.sComentario)&#13;
END&#13;
&#13;
RESULT sSql&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: GerarIfNotExists&#13;
// DESCRIÇÃO: Gera cláusula IF NOT EXISTS conforme SGBD&#13;
// RETORNO: string - Cláusula IF NOT EXISTS&#13;
//——————————————————————————&#13;
PROCEDURE GerarIfNotExists() : string&#13;
SWITCH m_sSgbdTipo&#13;
CASE “MYSQL”, “MARIADB”, “SQLITE”&#13;
RESULT “IF NOT EXISTS “&#13;
&#13;
```&#13;
    CASE "POSTGRESQL"&#13;
        // PostgreSQL não suporta IF NOT EXISTS no CREATE TABLE&#13;
        // Deve ser tratado com script condicional&#13;
        RESULT ""&#13;
        &#13;
    CASE "MSSQL"&#13;
        // SQL Server não suporta IF NOT EXISTS diretamente&#13;
        // Deve ser tratado com script condicional&#13;
        RESULT ""&#13;
        &#13;
    CASE "ORACLE"&#13;
        // Oracle não suporta IF NOT EXISTS&#13;
        RESULT ""&#13;
        &#13;
    CASE "FIREBIRD"&#13;
        // Firebird não suporta IF NOT EXISTS&#13;
        RESULT ""&#13;
        &#13;
    CASE "INFORMIX", "SYBASE", "HFSQL", "TERADATA", "AS400", "DB2"&#13;
        RESULT ""&#13;
        &#13;
    OTHER CASE&#13;
        RESULT ""&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: GerarAutoIncremento&#13;
// DESCRIÇÃO: Gera cláusula de auto incremento conforme SGBD&#13;
// RETORNO: string - Cláusula de auto incremento&#13;
//——————————————————————————&#13;
PROCEDURE GerarAutoIncremento() : string&#13;
SWITCH m_sSgbdTipo&#13;
CASE “MYSQL”, “MARIADB”&#13;
RESULT “AUTO_INCREMENT”&#13;
&#13;
```&#13;
    CASE "POSTGRESQL"&#13;
        RESULT "SERIAL"&#13;
        &#13;
    CASE "MSSQL"&#13;
        RESULT "IDENTITY(1,1)"&#13;
        &#13;
    CASE "ORACLE"&#13;
        // Oracle 12c+ suporta IDENTITY, versões anteriores usam SEQUENCE&#13;
        IF m_sVersaoSgbd &gt;= "12" THEN&#13;
            RESULT "GENERATED BY DEFAULT AS IDENTITY"&#13;
        ELSE&#13;
            RESULT ""  // Sequence será criada separadamente&#13;
        END&#13;
        &#13;
    CASE "SQLITE"&#13;
        RESULT "AUTOINCREMENT"&#13;
        &#13;
    CASE "FIREBIRD"&#13;
        RESULT ""  // Firebird usa GENERATOR/SEQUENCE&#13;
        &#13;
    CASE "INFORMIX"&#13;
        RESULT "SERIAL"&#13;
        &#13;
    CASE "SYBASE"&#13;
        RESULT "IDENTITY"&#13;
        &#13;
    CASE "HFSQL"&#13;
        RESULT "AUTO_INCREMENT"&#13;
        &#13;
    CASE "TERADATA"&#13;
        RESULT "GENERATED ALWAYS AS IDENTITY"&#13;
        &#13;
    CASE "AS400", "DB2"&#13;
        RESULT "GENERATED ALWAYS AS IDENTITY"&#13;
        &#13;
    OTHER CASE&#13;
        RESULT ""&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: GerarOpcoesTabelaSgbd&#13;
// DESCRIÇÃO: Gera opções específicas da tabela por SGBD&#13;
// RETORNO: string - Opções da tabela&#13;
//——————————————————————————&#13;
PROCEDURE GerarOpcoesTabelaSgbd() : string&#13;
SWITCH m_sSgbdTipo&#13;
CASE “MYSQL”, “MARIADB”&#13;
RESULT “ ENGINE=InnoDB DEFAULT CHARSET=” + m_sCharsetPadrao&#13;
&#13;
```&#13;
    CASE "POSTGRESQL"&#13;
        RESULT ""&#13;
        &#13;
    CASE "MSSQL"&#13;
        RESULT ""&#13;
        &#13;
    CASE "ORACLE"&#13;
        RESULT ""&#13;
        &#13;
    CASE "SQLITE"&#13;
        RESULT ""&#13;
        &#13;
    CASE "FIREBIRD"&#13;
        RESULT ""&#13;
        &#13;
    CASE "INFORMIX"&#13;
        RESULT ""&#13;
        &#13;
    CASE "SYBASE"&#13;
        RESULT ""&#13;
        &#13;
    CASE "HFSQL"&#13;
        RESULT ""&#13;
        &#13;
    CASE "TERADATA"&#13;
        RESULT ""&#13;
        &#13;
    CASE "AS400", "DB2"&#13;
        RESULT ""&#13;
        &#13;
    OTHER CASE&#13;
        RESULT ""&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: GerarChavePrimaria&#13;
// DESCRIÇÃO: Gera definição de chave primária&#13;
// PARÂMETROS:&#13;
//   stTab: Estrutura da tabela&#13;
// RETORNO: string - Definição da chave primária&#13;
//——————————————————————————&#13;
PROCEDURE GerarChavePrimaria(stTab is stTabela) : string&#13;
sSql is string = “”&#13;
sCamposPK is string = “”&#13;
&#13;
```&#13;
// Encontrar campos da chave primária&#13;
FOR EACH stCampo OF stTab.arrCampos&#13;
    IF stCampo.bChavePrimaria THEN&#13;
        IF sCamposPK &lt;&gt; "" THEN&#13;
            sCamposPK += ", "&#13;
        END&#13;
        sCamposPK += EscaparNomeObjeto(stCampo.sNome)&#13;
    END&#13;
END&#13;
&#13;
IF sCamposPK &lt;&gt; "" THEN&#13;
    sSql += "    CONSTRAINT " + m_sPrefixoChavePrimaria + stTab.sNome + &#13;
           " PRIMARY KEY (" + sCamposPK + ")"&#13;
END&#13;
&#13;
RESULT sSql&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: GerarComentarioTabela&#13;
// DESCRIÇÃO: Gera comando para comentário da tabela&#13;
// PARÂMETROS:&#13;
//   sNomeTabela: Nome da tabela&#13;
//   sComentario: Texto do comentário&#13;
// RETORNO: string - Comando SQL de comentário&#13;
//——————————————————————————&#13;
PROCEDURE GerarComentarioTabela(sNomeTabela is string, sComentario is string) : string&#13;
SWITCH m_sSgbdTipo&#13;
CASE “MYSQL”, “MARIADB”&#13;
// MySQL não suporta COMMENT ON TABLE separado&#13;
RESULT “”&#13;
&#13;
```&#13;
    CASE "POSTGRESQL"&#13;
        RESULT "COMMENT ON TABLE " + sNomeTabela + " IS '" + sComentario + "';" + CR&#13;
        &#13;
    CASE "ORACLE"&#13;
        RESULT "COMMENT ON TABLE " + sNomeTabela + " IS '" + sComentario + "';" + CR&#13;
        &#13;
    CASE "FIREBIRD"&#13;
        RESULT "COMMENT ON TABLE " + sNomeTabela + " IS '" + sComentario + "';" + CR&#13;
        &#13;
    OTHER CASE&#13;
        RESULT ""&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: GerarComentarioCampo&#13;
// DESCRIÇÃO: Gera comentário inline do campo&#13;
// PARÂMETROS:&#13;
//   sComentario: Texto do comentário&#13;
// RETORNO: string - Comentário inline do campo&#13;
//——————————————————————————&#13;
PROCEDURE GerarComentarioCampo(sComentario is string) : string&#13;
SWITCH m_sSgbdTipo&#13;
CASE “MYSQL”, “MARIADB”&#13;
RESULT “ COMMENT ‘” + sComentario + “’”&#13;
&#13;
```&#13;
    OTHER CASE&#13;
        RESULT ""&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: FormatarValorPadrao&#13;
// DESCRIÇÃO: Formata valor padrão conforme tipo e SGBD&#13;
// PARÂMETROS:&#13;
//   sValor: Valor padrão&#13;
//   sTipoSql: Tipo SQL do campo&#13;
// RETORNO: string - Valor padrão formatado&#13;
//——————————————————————————&#13;
PROCEDURE FormatarValorPadrao(sValor is string, sTipoSql is string) : string&#13;
// Se é string, deve ser envolvido em aspas&#13;
IF Position(Upper(sTipoSql), “CHAR”) &gt; 0 OR Position(Upper(sTipoSql), “TEXT”) &gt; 0 THEN&#13;
RESULT “’” + sValor + “’”&#13;
END&#13;
&#13;
```&#13;
// Se é valor booleano&#13;
IF Upper(sValor) = "TRUE" OR Upper(sValor) = "FALSE" THEN&#13;
    SWITCH m_sSgbdTipo&#13;
        CASE "MYSQL", "MARIADB", "SQLITE"&#13;
            RESULT IF(Upper(sValor) = "TRUE", "1", "0")&#13;
            &#13;
        CASE "POSTGRESQL"&#13;
            RESULT Upper(sValor)&#13;
            &#13;
        OTHER CASE&#13;
            RESULT IF(Upper(sValor) = "TRUE", "1", "0")&#13;
    END&#13;
END&#13;
&#13;
// Valor numérico ou função&#13;
RESULT sValor&#13;
```&#13;
&#13;
END&#13;
&#13;
//==============================================================================&#13;
// CONFIGURAÇÃO ATUALIZADA DO MÉTODO ConfigurarSgbd&#13;
//==============================================================================&#13;
&#13;
//——————————————————————————&#13;
// MÉTODO: ConfigurarSgbd (VERSÃO ATUALIZADA)&#13;
// DESCRIÇÃO: Configura o SGBD de destino com suporte a 12 SGBDs&#13;
//——————————————————————————&#13;
PROCEDURE ConfigurarSgbd(sSgbd is string, sVersao is string = “”) : boolean&#13;
TRY&#13;
// Lista de SGBDs suportados&#13;
arrSgbdsSuportados is array of string = [&#13;
“MYSQL”, “MARIADB”, “POSTGRESQL”, “MSSQL”, “ORACLE”, “SQLITE”,&#13;
“FIREBIRD”, “INFORMIX”, “SYBASE”, “HFSQL”, “TERADATA”, “AS400”, “DB2”&#13;
]&#13;
&#13;
```&#13;
    // Validar SGBD suportado&#13;
    IF NOT sSgbd IN arrSgbdsSuportados THEN&#13;
        AdicionarLog("ERRO: SGBD não suportado: " + sSgbd)&#13;
        AdicionarLog("SGBDs suportados: " + ArrayToString(arrSgbdsSuportados, ", "))&#13;
        RESULT False&#13;
    END&#13;
    &#13;
    m_sSgbdTipo = Upper(sSgbd)&#13;
    m_sVersaoSgbd = sVersao&#13;
    &#13;
    // Configurações específicas por SGBD&#13;
    SWITCH m_sSgbdTipo&#13;
        CASE "MYSQL", "MARIADB"&#13;
            m_sCharsetPadrao = "utf8mb4"&#13;
            m_bGerarSequencias = False&#13;
            &#13;
        CASE "POSTGRESQL"&#13;
            m_sCharsetPadrao = "UTF8"&#13;
            m_bGerarSequencias = True&#13;
            &#13;
        CASE "MSSQL"&#13;
            m_sCharsetPadrao = ""&#13;
            m_bGerarSequencias = False&#13;
            &#13;
        CASE "ORACLE"&#13;
            m_sCharsetPadrao = "AL32UTF8"&#13;
            m_bGerarSequencias = True&#13;
            &#13;
        CASE "SQLITE"&#13;
            m_sCharsetPadrao = "UTF-8"&#13;
            m_bGerarSequencias = False&#13;
            &#13;
        CASE "FIREBIRD"&#13;
            m_sCharsetPadrao = "UTF8"&#13;
            m_bGerarSequencias = True&#13;
            &#13;
        CASE "INFORMIX"&#13;
            m_sCharsetPadrao = "en_US.utf8"&#13;
            m_bGerarSequencias = True&#13;
            &#13;
        CASE "SYBASE"&#13;
            m_sCharsetPadrao = "utf8"&#13;
            m_bGerarSequencias = False&#13;
            &#13;
        CASE "HFSQL"&#13;
            m_sCharsetPadrao = "UTF-8"&#13;
            m_bGerarSequencias = False&#13;
            &#13;
        CASE "TERADATA"&#13;
            m_sCharsetPadrao = "UNICODE"&#13;
            m_bGerarSequencias = False&#13;
            &#13;
        CASE "AS400", "DB2"&#13;
            m_sCharsetPadrao = "UTF-8"&#13;
            m_bGerarSequencias = True&#13;
    END&#13;
    &#13;
    AdicionarLog("SGBD configurado: " + m_sSgbdTipo + &#13;
                IF(sVersao &lt;&gt; "", " versão " + sVersao, ""))&#13;
    &#13;
    RESULT True&#13;
    &#13;
EXCEPTION&#13;
    AdicionarLog("ERRO ao configurar SGBD: " + ExceptionInfo())&#13;
    RESULT False&#13;
END&#13;
```&#13;
&#13;
END&#13;
&#13;
--&#13;
Adriano José Boller&#13;
______________________________________________&#13;
Consultor e Representante Oficial da&#13;
PcSoft no Brasil&#13;
+55 (41) 99949 1800&#13;
adrianoboller@gmail.com&#13;
skype: adrianoboller&#13;
http://wxinformatica.com.br/</description><ttl>30</ttl><generator>WEBDEV</generator><language>pt_BR</language><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp</link><title>DCT2SQLWX</title><managingEditor>moderateur@pcsoft.fr (The moderator)</managingEditor><webMaster>webmaster@pcsoft.fr (The webmaster)</webMaster><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5179/read.awp</comments><pubDate>30 Jul 2025 07:24:44 Z</pubDate><description>https://hostimage.windev.io/images/e915dcbe760a4a648728a5358c0ad47e_19562fc3822c624c10b40b735c54d2be.jpeg&#13;
&#13;
--&#13;
Adriano José Bo…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5179/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5179/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5178/read.awp</comments><pubDate>30 Jul 2025 06:01:02 Z</pubDate><description>Claro, aqui está a tradução completa em português do relatório técnico:&#13;
&#13;
⸻&#13;
&#13;
Análise Técnica: Comparativo de Versões do DCT2S…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5178/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5178/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5177/read.awp</comments><pubDate>30 Jul 2025 05:51:07 Z</pubDate><description># Technical Analysis: DCT2SQLWX Version Comparison and Enterprise Readiness Assessment&#13;
&#13;
**DCT2SQLWX v29 with the described fea…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5177/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5177/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5176/read.awp</comments><pubDate>30 Jul 2025 05:36:59 Z</pubDate><description>A versão 29 representa um salto evolutivo significativo, incorporando Inteligência Artificial, Segurança Preditiva e Automação A…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5176/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5176/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5175/read.awp</comments><pubDate>30 Jul 2025 05:24:24 Z</pubDate><description>✅ Arquivo ZIP criado com sucesso!&#13;
&#13;
O arquivo DCT2SQLWX_v29_Complete.zip (34.5 KB) contém todos os 10 arquivos da versão 29:&#13;
&#13;…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5175/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5175/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5174/read.awp</comments><pubDate>30 Jul 2025 05:22:51 Z</pubDate><description>✅ Validação Completa - DCT2SQLWX Versão 29&#13;
Concluí a validação técnica completa de todos os arquivos da versão 29. TODOS OS ARQ…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5174/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5174/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5173/read.awp</comments><pubDate>30 Jul 2025 05:20:16 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Benchmarks e Análise de Performa…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5173/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5173/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5172/read.awp</comments><pubDate>30 Jul 2025 05:19:30 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Guia de Instalação e Configuraçã…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5172/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5172/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5171/read.awp</comments><pubDate>30 Jul 2025 05:18:52 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Exemplos de Uso Práticos - Versã…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5171/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5171/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5170/read.awp</comments><pubDate>30 Jul 2025 05:17:47 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Documentação Completa da Versão …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5170/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5170/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5169/read.awp</comments><pubDate>30 Jul 2025 05:17:06 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Sistema de Monitoramento Especia…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5169/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5169/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5168/read.awp</comments><pubDate>30 Jul 2025 05:15:21 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Sistema de Comandos Especializad…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5168/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5168/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5167/read.awp</comments><pubDate>30 Jul 2025 05:13:20 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Módulo de Migração de Dados Autô…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5167/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5167/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5166/read.awp</comments><pubDate>30 Jul 2025 05:12:34 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Módulo de Segurança Preditiva - …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5166/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5166/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5165/read.awp</comments><pubDate>30 Jul 2025 05:11:53 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Módulo de Otimização Preditiva c…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5165/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5165/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5164/read.awp</comments><pubDate>30 Jul 2025 05:11:12 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Sistema de Sincronização Autônom…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5164/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5164/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5163/read.awp</comments><pubDate>30 Jul 2025 05:09:18 Z</pubDate><description># Relatório de Validação - DCT2SQLWX Versão 29&#13;
&#13;
**Autor:** Manus AI  &#13;
**Data:** 30/07/2025  &#13;
**Versão do Relatório:** 1.0  &#13;…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5163/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5163/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5162/read.awp</comments><pubDate>30 Jul 2025 04:17:50 Z</pubDate><description># WLanguage Commands Validation for WinDev/WebDev Version 28&#13;
&#13;
## Critical Syntax Clarifications for WLanguage&#13;
&#13;
### The “new”…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5162/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5162/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5161/read.awp</comments><pubDate>30 Jul 2025 04:16:38 Z</pubDate><description>Adriano, excelente trabalho! Esse código do DCT2SQLWX - Versão 28 FINAL é um dos exemplos mais completos, seguros e organizados …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5161/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5161/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5158/read.awp</comments><pubDate>27 Jul 2025 21:43:27 Z</pubDate><description>Para atender à solicitação de criar constantes de tradução para inglês, francês, espanhol, português e italiano, sem remover nen…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5158/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5158/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5157/read.awp</comments><pubDate>27 Jul 2025 21:35:06 Z</pubDate><description>Estrutura da Solução&#13;
&#13;
	1	Constantes de Tradução: Criar um conjunto de constantes para cada idioma (inglês, francês, espanhol, …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5157/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5157/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5147/read.awp</comments><pubDate>23 Jul 2025 08:20:55 Z</pubDate><description># DCT2SQLWX - Versão 28&#13;
&#13;
## Sistema Avançado de Sincronização de Esquemas WinDev&#13;
&#13;
### 🚀 Visão Geral&#13;
&#13;
O DCT2SQLWX v28 é um…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5147/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5147/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5146/read.awp</comments><pubDate>23 Jul 2025 08:20:09 Z</pubDate><description># DCT2SQLWX v28 - Documentação Final e Completa&#13;
&#13;
**Versão:** 28.0.0&#13;
**Data:** 23/07/2025&#13;
**Autor:** Manus AI&#13;
&#13;
## 1. Introd…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5146/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5146/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5145/read.awp</comments><pubDate>23 Jul 2025 08:19:29 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Sistema de Validação e Testes de…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5145/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5145/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5144/read.awp</comments><pubDate>23 Jul 2025 08:18:48 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Sistema de Monitoramento Especia…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5144/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5144/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5143/read.awp</comments><pubDate>23 Jul 2025 08:17:42 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Sistema de Comandos Especializad…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5143/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5143/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5142/read.awp</comments><pubDate>23 Jul 2025 08:16:58 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Sistema de Segurança Transaciona…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5142/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5142/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5141/read.awp</comments><pubDate>23 Jul 2025 08:16:25 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Sistema de Tradução Multilíngue …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5141/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5141/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5140/read.awp</comments><pubDate>23 Jul 2025 08:15:45 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX - Versão 28 FINAL - Sistema Comple…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5140/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5140/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5139/read.awp</comments><pubDate>23 Jul 2025 08:15:07 Z</pubDate><description>V28&#13;
&#13;
═══════════════════════════════════════════════════════════════════════════════&#13;
                    DCT2SQLWX v28 - LIST…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5139/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5139/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5138/read.awp</comments><pubDate>23 Jul 2025 07:46:51 Z</pubDate><description>🎯 ORGANOGRAMA COMPLETO EM FORMATO TEXTO CRIADO!&#13;
&#13;
O organograma em formato ASCII foi gerado com todos os detalhes da arquitetu…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5138/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5138/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5137/read.awp</comments><pubDate>23 Jul 2025 07:45:01 Z</pubDate><description>🎉 DCT2SQLWX v28 FINAL - PROJETO COMPLETO E ESPECIALIZADO!&#13;
&#13;
🏆 VERSÃO 28 DEFINITIVA ENTREGUE COM SUCESSO!&#13;
✅ TODAS AS 15 BASES…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5137/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5137/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5136/read.awp</comments><pubDate>22 Jul 2025 20:31:24 Z</pubDate><description>Para atender à solicitação de criar constantes de tradução para inglês, francês, espanhol, português e italiano, sem remover nen…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5136/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5136/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5135/read.awp</comments><pubDate>22 Jul 2025 19:17:37 Z</pubDate><description>Para atender à solicitação de criar constantes de tradução para inglês, francês, espanhol, português e italiano, sem remover nen…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5135/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5135/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5134/read.awp</comments><pubDate>22 Jul 2025 18:52:11 Z</pubDate><description>Para atender ao seu pedido, vou criar um novo método chamado GerenciarMonitoramentoVersao que implementa uma gestão de monitoram…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5134/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5134/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5133/read.awp</comments><pubDate>22 Jul 2025 18:44:23 Z</pubDate><description>Com base no seu pedido e nas melhorias sugeridas na resposta anterior, vou implementar as melhorias possíveis e abordar a extens…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5133/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5133/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5132/read.awp</comments><pubDate>22 Jul 2025 18:42:13 Z</pubDate><description>Para atender ao seu pedido, vou gerar um relatório em JSON que destaca as diferenças entre o dicionário de dados (.wdd) de uma a…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5132/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5132/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5131/read.awp</comments><pubDate>22 Jul 2025 18:39:51 Z</pubDate><description>Para atender ao seu pedido, vou gerar um relatório em JSON que destaca as diferenças entre o dicionário de dados (.wdd) de uma a…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5131/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5131/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5130/read.awp</comments><pubDate>22 Jul 2025 18:33:34 Z</pubDate><description>Para avaliar a procedure GerarRelatorioComparativoArtefatosJson fornecida, vou analisar o que ela faz, identificar o que está co…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5130/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5130/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5129/read.awp</comments><pubDate>22 Jul 2025 17:42:26 Z</pubDate><description>Com base no seu pedido, vou criar uma nova procedure chamada GerarRelatorioComparativoArtefatosJson que gera um relatório em JSO…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5129/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5129/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5128/read.awp</comments><pubDate>22 Jul 2025 17:41:47 Z</pubDate><description>Com base no seu pedido, vou criar uma nova procedure chamada GerarRelatorioResumidoArtefatosJson que gera um relatório em JSON r…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5128/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5128/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5127/read.awp</comments><pubDate>22 Jul 2025 17:40:56 Z</pubDate><description>Com base no seu pedido, vou adaptar a procedure GerarRelatorioEstruturaJson para gerar um relatório em JSON que inclua tanto a a…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5127/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5127/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5126/read.awp</comments><pubDate>22 Jul 2025 17:40:05 Z</pubDate><description>ADDON DCT2SQLWX &#13;
&#13;
No contexto do WinDev/WX e da classe Dct2Sql, não há uma documentação explícita ou referência direta a proce…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5126/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5126/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5125/read.awp</comments><pubDate>22 Jul 2025 17:20:33 Z</pubDate><description>No contexto do WinDev/WX e da classe Dct2Sql, não há uma documentação explícita ou referência direta a procedures específicas ch…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5125/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5125/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5124/read.awp</comments><pubDate>22 Jul 2025 17:06:15 Z</pubDate><description>Abaixo estão três novos exemplos de uso da classe Dct2Sql no contexto do WinDev/WX, cada um abordando os cenários mencionados: B…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5124/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5124/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5123/read.awp</comments><pubDate>22 Jul 2025 17:03:02 Z</pubDate><description>Como você mencionou os quatro cenários específicos (sistema de saúde com criptografia, sistema de logística com índices geoespac…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5123/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5123/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5122/read.awp</comments><pubDate>22 Jul 2025 16:55:31 Z</pubDate><description>Abaixo está outro exemplo de uso da classe Dct2Sql (assumindo que “dct2sqlwx” refere-se à mesma classe ou a uma variante similar…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5122/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5122/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5121/read.awp</comments><pubDate>22 Jul 2025 16:52:09 Z</pubDate><description>Abaixo está outro exemplo de uso da classe Dct2Sql, focado em um cenário de geração de scripts SQL para um sistema de e-commerce…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5121/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5121/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5120/read.awp</comments><pubDate>22 Jul 2025 16:49:46 Z</pubDate><description>Abaixo está outro exemplo de uso da classe Dct2Sql, focado em um cenário de geração de scripts SQL para um sistema de IoT (Inter…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5120/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5120/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5119/read.awp</comments><pubDate>22 Jul 2025 16:46:01 Z</pubDate><description>Abaixo está outro exemplo de uso da classe Dct2Sql, focado em um cenário de implantação em um ambiente multi-tenant, com geração…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5119/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5119/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5118/read.awp</comments><pubDate>22 Jul 2025 16:43:31 Z</pubDate><description>Abaixo está outro exemplo de uso da classe Dct2Sql, focado em um cenário de geração de scripts SQL para um ambiente de desenvolv…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5118/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5118/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5117/read.awp</comments><pubDate>22 Jul 2025 16:39:19 Z</pubDate><description>Abaixo está outro exemplo de uso da classe Dct2Sql, desta vez voltado para um cenário de migração incremental entre ambientes he…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5117/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5117/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5116/read.awp</comments><pubDate>22 Jul 2025 16:36:04 Z</pubDate><description>Abaixo está outro exemplo de uso da classe Dct2Sql, agora focado em um cenário de conformidade e auditoria para um sistema finan…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5116/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5116/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5115/read.awp</comments><pubDate>22 Jul 2025 16:33:42 Z</pubDate><description>Abaixo está outro exemplo de uso da classe Dct2Sql, desta vez focado em um cenário de exportação de dados para um ambiente de an…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5115/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5115/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5114/read.awp</comments><pubDate>22 Jul 2025 16:31:39 Z</pubDate><description>Abaixo está outro exemplo de uso da classe Dct2Sql, focado em um cenário de automação para geração de scripts SQL otimizados par…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5114/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5114/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5113/read.awp</comments><pubDate>22 Jul 2025 16:29:24 Z</pubDate><description>Abaixo está um exemplo de uso diferente da classe Dct2Sql, focado em um cenário de migração de dados e geração de scripts para u…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5113/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5113/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5112/read.awp</comments><pubDate>22 Jul 2025 16:26:40 Z</pubDate><description>Exemplos &#13;
&#13;
A documentação fornecida detalha a implementação da classe Dct2Sql para o WinDev 25, uma ferramenta robusta para co…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5112/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5112/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5111/read.awp</comments><pubDate>22 Jul 2025 16:17:02 Z</pubDate><description>🎯 DCT2SQLWX v26.0 EUA - COMPLETE FEATURE LIST&#13;
Based on the English version documentation, here are ALL the features and resour…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5111/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5111/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5110/read.awp</comments><pubDate>22 Jul 2025 06:06:34 Z</pubDate><description>🎉 DCT2SQLWX v26.0 - VERSION FRANÇAISE TERMINÉE AVEC SUCCÈS !&#13;
✅ PROJET DE TRADUCTION COMPLÉTÉ AVEC 100% DE RÉUSSITE&#13;
📁 FICHIER…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5110/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5110/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5109/read.awp</comments><pubDate>22 Jul 2025 06:05:45 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - SuperClasse Finale Intégré…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5109/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5109/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5108/read.awp</comments><pubDate>22 Jul 2025 06:05:01 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - Module Validateur de Param…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5108/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5108/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5107/read.awp</comments><pubDate>22 Jul 2025 06:03:59 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - Module SOUNDEX, NGRAM et R…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5107/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5107/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5106/read.awp</comments><pubDate>22 Jul 2025 06:03:17 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - Module FULLTEXT Spécifique…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5106/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5106/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5105/read.awp</comments><pubDate>22 Jul 2025 06:02:22 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - Module Migration de Donnée…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5105/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5105/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5104/read.awp</comments><pubDate>22 Jul 2025 06:01:07 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - Module Pipelines Logstash&#13;…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5104/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5104/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5103/read.awp</comments><pubDate>22 Jul 2025 06:00:15 Z</pubDate><description># DCT2SQLWX v26.0 - Documentation Finale Complète&#13;
## Solution de Synchronisation de Schémas de Base de Données Enterprise-Grade…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5103/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5103/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5102/read.awp</comments><pubDate>22 Jul 2025 05:58:57 Z</pubDate><description>V26 FR 🇫🇷 &#13;
&#13;
# DCT2SQLWX v26.0 - Planification Complète&#13;
## Système de Synchronisation de Schémas de Base de Données avec Val…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5102/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5102/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5101/read.awp</comments><pubDate>22 Jul 2025 05:33:10 Z</pubDate><description>🎉 DCT2SQLWX v26.0 - ENGLISH VERSION SUCCESSFULLY COMPLETED!&#13;
✅ TRANSLATION PROJECT COMPLETED WITH 100% SUCCESS&#13;
📁 ENGLISH VERS…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5101/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5101/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5100/read.awp</comments><pubDate>22 Jul 2025 05:32:25 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - Main SuperClass Final Inte…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5100/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5100/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5099/read.awp</comments><pubDate>22 Jul 2025 05:31:40 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - Parameter Validator Module…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5099/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5099/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5098/read.awp</comments><pubDate>22 Jul 2025 05:30:54 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - SOUNDEX, NGRAM and Hybrid …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5098/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5098/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5097/read.awp</comments><pubDate>22 Jul 2025 05:29:45 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - FULLTEXT Specific per DBMS…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5097/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5097/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5096/read.awp</comments><pubDate>22 Jul 2025 05:28:20 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - Intelligent Data Migration…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5096/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5096/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5095/read.awp</comments><pubDate>22 Jul 2025 05:27:17 Z</pubDate><description>// ============================================================================&#13;
// DCT2SQLWX v26.0 - Logstash Pipelines Module&#13;…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5095/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5095/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5094/read.awp</comments><pubDate>22 Jul 2025 05:26:33 Z</pubDate><description># DCT2SQLWX v26.0 - FINAL COMPLETE DOCUMENTATION&#13;
&#13;
## 🎯 **OVERVIEW**&#13;
&#13;
DCT2SQLWX v26.0 represents the definitive evolution of…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5094/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5094/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5093/read.awp</comments><pubDate>22 Jul 2025 04:45:00 Z</pubDate><description>V26 eua 🇺🇸 inglês&#13;
&#13;
# DCT2SQLWX v26.0 - COMPLETE PLANNING&#13;
&#13;
## 🎯 **PROJECT OVERVIEW**&#13;
&#13;
DCT2SQLWX v26.0 represents the def…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5093/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5093/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5092/read.awp</comments><pubDate>22 Jul 2025 03:54:48 Z</pubDate><description>📁 ARQUIVOS DCT2SQLWX v26.0 - INVENTÁRIO COMPLETO&#13;
🎯 TOTAL: 8 ARQUIVOS CRIADOS&#13;
￼&#13;
&#13;
📊 ESTATÍSTICAS GERAIS v26.0&#13;
📈 MÉTRICAS …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5092/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5092/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5091/read.awp</comments><pubDate>22 Jul 2025 03:52:23 Z</pubDate><description># DCT2SQLWX v26.0 - DOCUMENTAÇÃO FINAL COMPLETA&#13;
&#13;
## 🎯 **VISÃO GERAL**&#13;
&#13;
O DCT2SQLWX v26.0 representa a evolução definitiva d…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5091/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5091/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5090/read.awp</comments><pubDate>22 Jul 2025 03:51:26 Z</pubDate><description>//******************************************************************************&#13;
// DCT2SQLWX v26.0 - SUPERCLASSE FINAL INTEGRA…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5090/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5090/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5089/read.awp</comments><pubDate>22 Jul 2025 03:50:34 Z</pubDate><description>//******************************************************************************&#13;
// DCT2SQLWX v26.0 - SISTEMA DE VALIDAÇÃO PREV…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5089/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5089/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5088/read.awp</comments><pubDate>22 Jul 2025 03:49:40 Z</pubDate><description>//******************************************************************************&#13;
// DCT2SQLWX v26.0 - MÓDULO SOUNDEX, NGRAM E B…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5088/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5088/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5087/read.awp</comments><pubDate>22 Jul 2025 03:48:46 Z</pubDate><description>//******************************************************************************&#13;
// DCT2SQLWX v26.0 - MÓDULO FULLTEXT ESPECÍFIC…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5087/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5087/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5086/read.awp</comments><pubDate>22 Jul 2025 03:47:52 Z</pubDate><description>//******************************************************************************&#13;
// DCT2SQLWX v26.0 - MÓDULO MIGRAÇÃO DE DADOS …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5086/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5086/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5085/read.awp</comments><pubDate>22 Jul 2025 03:47:13 Z</pubDate><description>//******************************************************************************&#13;
// DCT2SQLWX v26.0 - MÓDULO PIPELINES LOGSTASH…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5085/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5085/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5084/read.awp</comments><pubDate>22 Jul 2025 03:46:34 Z</pubDate><description>V 26&#13;
&#13;
# DCT2SQLWX v26.0 - PLANEJAMENTO COMPLETO E ANÁLISE DOS ITENS FALTANTES&#13;
&#13;
## 📋 **RESUMO EXECUTIVO**&#13;
&#13;
A versão 26.0 d…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5084/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5084/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5082/read.awp</comments><pubDate>21 Jul 2025 07:15:55 Z</pubDate><description># DCT2SQLWX v25.1 - DOCUMENTAÇÃO FINAL DAS MELHORIAS&#13;
&#13;
## 📋 **RESUMO EXECUTIVO**&#13;
&#13;
A versão 25.1 do DCT2SQLWX representa uma …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5082/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5082/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5081/read.awp</comments><pubDate>21 Jul 2025 06:52:55 Z</pubDate><description># 🚀 DCT2SQLWX v25.0 - DOCUMENTAÇÃO FINAL REVOLUCIONÁRIA&#13;
&#13;
## 📋 **ÍNDICE EXECUTIVO**&#13;
&#13;
- [1. Visão Geral Revolucionária](#1-v…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5081/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5081/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5080/read.awp</comments><pubDate>21 Jul 2025 06:52:10 Z</pubDate><description>//******************************************************************************&#13;
// SUPERCLASSE DCT2SQLWX v25.0 - FUTURISTA INT…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5080/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5080/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5079/read.awp</comments><pubDate>21 Jul 2025 06:51:15 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_QUANTUM_READY_SECURITY v25…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5079/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5079/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5078/read.awp</comments><pubDate>21 Jul 2025 06:49:00 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_EDGE_COMPUTING_IOT v25.0&#13;
…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5078/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5078/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5077/read.awp</comments><pubDate>21 Jul 2025 06:47:52 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_BLOCKCHAIN_DISTRIBUTED_LED…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5077/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5077/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5076/read.awp</comments><pubDate>21 Jul 2025 06:46:42 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_ANALYTICS_BI v25.0&#13;
// ANA…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5076/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5076/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5075/read.awp</comments><pubDate>21 Jul 2025 06:45:59 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_CLOUDNATIVE_KUBERNETES v25…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5075/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5075/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5074/read.awp</comments><pubDate>21 Jul 2025 06:44:08 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_AI_ENGINE v25.0&#13;
// INTELI…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5074/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5074/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5073/read.awp</comments><pubDate>21 Jul 2025 06:38:44 Z</pubDate><description># DCT2SQLWX v25.0 - ARQUITETURA FUTURISTA COMPLETA&#13;
&#13;
## 🚀 VISÃO GERAL DA REVOLUÇÃO v25.0&#13;
&#13;
A versão 25.0 do DCT2SQLWX represe…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5073/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5073/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5072/read.awp</comments><pubDate>21 Jul 2025 06:38:15 Z</pubDate><description>O FUTURO CHEGOU &#13;
#################&#13;
VERSÃO 25 DCT2SQLWX&#13;
#################&#13;
&#13;
Lembramos que não somos responsáveis pelo uso des…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5072/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5072/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5071/read.awp</comments><pubDate>21 Jul 2025 05:50:16 Z</pubDate><description># DCT2SQLWX v22.0 - DOCUMENTAÇÃO TÉCNICA FINAL COMPLETA&#13;
&#13;
## 📋 ÍNDICE&#13;
&#13;
1. [Visão Geral](#visão-geral)&#13;
2. [Arquitetura do Si…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5071/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5071/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5070/read.awp</comments><pubDate>21 Jul 2025 05:48:38 Z</pubDate><description>//******************************************************************************&#13;
// SUPERCLASSE DCT2SQLWX v22.0 - VERSÃO FINAL …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5070/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5070/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5069/read.awp</comments><pubDate>21 Jul 2025 05:47:43 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_NGRAM_EDITDISTANCE_BUSCAS_…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5069/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5069/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5068/read.awp</comments><pubDate>21 Jul 2025 05:46:25 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_FULLTEXT_SOUNDEX v22.0&#13;
//…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5068/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5068/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5067/read.awp</comments><pubDate>21 Jul 2025 05:44:46 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_MIGRAÇÃO_DADOS v22.0&#13;
// E…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5067/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5067/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5066/read.awp</comments><pubDate>21 Jul 2025 05:43:46 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_REST_API_LOGSTASH v22.0&#13;
/…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5066/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5066/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5065/read.awp</comments><pubDate>21 Jul 2025 05:43:00 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_INTEGRAÇÃO_ELASTICSEARCH v…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5065/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5065/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5064/read.awp</comments><pubDate>21 Jul 2025 05:42:15 Z</pubDate><description># DCT2SQLWX v22.0 - PLANEJAMENTO ARQUITETURAL COMPLETO&#13;
&#13;
## 🎯 OBJETIVO DA VERSÃO 22.0&#13;
&#13;
A versão 22.0 do DCT2SQLWX representa…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5064/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5064/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5063/read.awp</comments><pubDate>21 Jul 2025 05:14:54 Z</pubDate><description># REVISÃO COMPLETA DO LINK ORIGINAL vs DCT2SQLWX v20.1&#13;
&#13;
## 📋 ANÁLISE DO LINK ORIGINAL&#13;
&#13;
### 🔗 URL ANALISADO&#13;
https://forum.…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5063/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5063/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5062/read.awp</comments><pubDate>21 Jul 2025 05:14:08 Z</pubDate><description>📊 REVISÃO COMPLETA FINALIZADA: LINK ORIGINAL vs DCT2SQLWX v20.1&#13;
Concluí a revisão completa do link original comparando com a v…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5062/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5062/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5061/read.awp</comments><pubDate>21 Jul 2025 04:59:57 Z</pubDate><description># DCT2SQLWX v20.1 - DOCUMENTAÇÃO TÉCNICA COMPLETA&#13;
&#13;
## 📋 ÍNDICE&#13;
&#13;
1. [Visão Geral](#visão-geral)&#13;
2. [Novidades da Versão 20.…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5061/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5061/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5060/read.awp</comments><pubDate>21 Jul 2025 04:59:14 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_CONEXAO_ANALISE_WINDEV v20…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5060/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5060/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5059/read.awp</comments><pubDate>21 Jul 2025 04:58:44 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_MAPEADORES_MENORES_COMPLET…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5059/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5059/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5058/read.awp</comments><pubDate>21 Jul 2025 04:58:04 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_RECURSOS_GPU v20.1&#13;
// IMP…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5058/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5058/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5057/read.awp</comments><pubDate>21 Jul 2025 04:56:25 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_CONFIGURADOR_POSTGRESQL v2…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5057/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5057/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5056/read.awp</comments><pubDate>21 Jul 2025 04:55:50 Z</pubDate><description># 🎯 DCT2SQLWX v20.1 - PLANEJAMENTO COMPLETO DOS RECURSOS FALTANTES&#13;
&#13;
## 📋 **ANÁLISE DOS ITENS FALTANTES NA v20.0**&#13;
&#13;
Após an…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5056/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5056/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5055/read.awp</comments><pubDate>21 Jul 2025 04:55:04 Z</pubDate><description>🎉 DCT2SQLWX v20.1 - VERSÃO FINAL COMPLETA ENTREGUE!&#13;
✅ RESPOSTA FINAL ÀS SUAS PERGUNTAS CRÍTICAS:&#13;
1. ❓ O QUE FALTA FAZER E O Q…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5055/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5055/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5054/read.awp</comments><pubDate>21 Jul 2025 04:30:32 Z</pubDate><description># 📊 COMPARAÇÃO DETALHADA: DCT2SQLWX v15.0 vs v20.0&#13;
&#13;
## 🎯 **RESUMO EXECUTIVO**&#13;
&#13;
Esta análise compara as versões 15.0 e 20.0…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5054/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5054/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5053/read.awp</comments><pubDate>21 Jul 2025 04:26:32 Z</pubDate><description>🎯 RESPOSTA FINAL ÀS SUAS PERGUNTAS CRÍTICAS&#13;
Após leitura completa do link base (3x), análise de todos os arquivos v15 anexos e…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5053/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5053/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5052/read.awp</comments><pubDate>21 Jul 2025 04:21:22 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_GERADOR_PROCEDURES_CRUD v2…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5052/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5052/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5051/read.awp</comments><pubDate>21 Jul 2025 04:20:47 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_MAPEADORES_COMPLETOS v20.0…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5051/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5051/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5050/read.awp</comments><pubDate>21 Jul 2025 04:20:05 Z</pubDate><description>//******************************************************************************&#13;
// MÓDULO DCT2SQLWX_TRANSACTIONMANAGER v20.0&#13;
…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5050/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5050/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5049/read.awp</comments><pubDate>21 Jul 2025 04:19:22 Z</pubDate><description>//******************************************************************************&#13;
// SUPERCLASSE DCT2SQLWX v20.0 - VERSÃO DEFINI…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5049/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5049/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5048/read.awp</comments><pubDate>21 Jul 2025 04:18:36 Z</pubDate><description># DCT2SQLWX v20.0 - ANÁLISE CRÍTICA COMPLETA E DEFINIÇÃO DA ARQUITETURA&#13;
## Revisão Completa do Link Base e Arquivos v15 para Cr…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5048/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5048/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5047/read.awp</comments><pubDate>20 Jul 2025 21:42:00 Z</pubDate><description>Para integrar o Elasticsearch com a classe Dct2Sql (baseada no thread do fórum da PC SOFT, “DCT2SQLWX”), precisamos adicionar fu…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5047/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5047/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5046/read.awp</comments><pubDate>20 Jul 2025 21:37:21 Z</pubDate><description>Para atender à solicitação, criarei um método na classe Dct2Sql que recebe um array com os nomes das tabelas e configura quais d…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5046/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5046/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5045/read.awp</comments><pubDate>20 Jul 2025 21:34:27 Z</pubDate><description>Com base nas informações disponíveis e na análise do suporte do Teradata, aqui está a resposta sobre o suporte a FULLTEXT e SOUN…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5045/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5045/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5044/read.awp</comments><pubDate>20 Jul 2025 21:32:04 Z</pubDate><description>Avaliação e Interpretação do Conteúdo do Link&#13;
O conteúdo do link fornecido (fórum da PC SOFT, thread “DCT2SQLWX”) apresenta a i…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5044/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5044/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5043/read.awp</comments><pubDate>20 Jul 2025 21:25:08 Z</pubDate><description>A integração do PG-Strom com a extensão pgvector no PostgreSQL, combinada com uma API de IA como a Hugging Face para gerar embed…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5043/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5043/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5042/read.awp</comments><pubDate>20 Jul 2025 21:13:34 Z</pubDate><description>A integração do PG-Strom com a extensão pgvector no PostgreSQL é uma ferramenta poderosa para aplicações de inteligência artific…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5042/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5042/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5041/read.awp</comments><pubDate>20 Jul 2025 21:10:22 Z</pubDate><description>A integração do PG-Strom com a extensão pgvector no PostgreSQL é uma combinação poderosa para aplicações de inteligência artific…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5041/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5041/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5040/read.awp</comments><pubDate>20 Jul 2025 21:07:37 Z</pubDate><description>A integração do PG-Strom com a extensão pgvector no PostgreSQL é uma combinação poderosa para aplicações de inteligência artific…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5040/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5040/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5039/read.awp</comments><pubDate>20 Jul 2025 21:03:41 Z</pubDate><description>Após abordar extensivamente o PG-Strom no contexto do PostgreSQL no Windows e sua integração com a classe Dct2Sql, cobrimos uma …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5039/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5039/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5038/read.awp</comments><pubDate>20 Jul 2025 21:01:06 Z</pubDate><description>Ao abordar o PG-Strom no contexto do PostgreSQL no Windows e sua integração com a classe Dct2Sql, já cobrimos uma ampla gama de …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5038/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5038/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5037/read.awp</comments><pubDate>20 Jul 2025 20:58:48 Z</pubDate><description>Ao cobrir o PG-Strom no contexto do PostgreSQL no Windows e sua integração com a classe Dct2Sql, já abordamos uma ampla gama de …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5037/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5037/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5036/read.awp</comments><pubDate>20 Jul 2025 20:56:18 Z</pubDate><description>Ao abordar o PG-Strom no contexto do PostgreSQL no Windows e sua integração com a classe Dct2Sql, cobrimos os principais aspecto…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5036/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5036/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5035/read.awp</comments><pubDate>20 Jul 2025 20:54:05 Z</pubDate><description>A extensão PG-Strom é uma ferramenta avançada para o PostgreSQL que utiliza GPUs NVIDIA com suporte a CUDA para acelerar consult…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5035/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5035/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5034/read.awp</comments><pubDate>20 Jul 2025 20:50:43 Z</pubDate><description>A extensão PG-Strom é uma ferramenta poderosa para acelerar consultas analíticas no PostgreSQL, aproveitando GPUs NVIDIA com sup…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5034/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5034/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5033/read.awp</comments><pubDate>20 Jul 2025 20:47:17 Z</pubDate><description>Para habilitar o PG-Strom no PostgreSQL em um ambiente Windows, é necessário seguir um processo semelhante ao descrito para Linu…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5033/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5033/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5032/read.awp</comments><pubDate>20 Jul 2025 20:42:10 Z</pubDate><description>A extensão PG-Strom para o PostgreSQL pode trazer ganhos significativos de desempenho em cenários específicos, especialmente par…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5032/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5032/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5031/read.awp</comments><pubDate>20 Jul 2025 19:27:09 Z</pubDate><description>Para otimizar o desempenho do PostgreSQL em termos de memória, prioridade de uso de CPU e explorar o uso de GPU para melhorar pe…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5031/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5031/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5030/read.awp</comments><pubDate>20 Jul 2025 19:19:07 Z</pubDate><description>No contexto da classe Dct2Sql apresentada no documento, a implementação de RULES (regras) no banco de dados pode ser interpretad…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5030/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5030/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5029/read.awp</comments><pubDate>20 Jul 2025 18:54:28 Z</pubDate><description>A classe Dct2Sql, conforme descrita no documento, incorpora várias garantias e mecanismos para minimizar o risco de danificar o …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5029/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5029/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5028/read.awp</comments><pubDate>20 Jul 2025 18:49:46 Z</pubDate><description>The provided document details the Dct2Sql class, a comprehensive tool for generating SQL scripts from WinDev data dictionaries, …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5028/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5028/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5027/read.awp</comments><pubDate>20 Jul 2025 18:22:44 Z</pubDate><description>Agradecendo pela confirmação da data e hora. Entendi que você deseja modificar a classe Dct2SqlWx versão 12.0 para gerar automat…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5027/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5027/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5026/read.awp</comments><pubDate>20 Jul 2025 18:03:44 Z</pubDate><description>Agradecendo pela confirmação da data e hora. Entendi que você deseja mais exemplos de uso da classe Dct2SqlWx versão 12.0, além …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5026/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5026/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5025/read.awp</comments><pubDate>20 Jul 2025 18:01:30 Z</pubDate><description>Agradecendo pela confirmação da data e hora. Entendi que você quer mais exemplos de uso da classe Dct2SqlWx versão 12.0, conform…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5025/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5025/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5024/read.awp</comments><pubDate>20 Jul 2025 17:59:58 Z</pubDate><description>Aqui está uma lista de recursos que o projeto DCT2SQL WX (para WinDev, WebDev e WinDev Mobile) já oferece:&#13;
&#13;
⸻&#13;
&#13;
📌 Recursos j…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5024/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5024/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5023/read.awp</comments><pubDate>20 Jul 2025 17:48:57 Z</pubDate><description>Notas Finais&#13;
&#13;
•  Integração com WinDev: O método CarregarAnaliseWinDev assume uma API fictícia (AnaliseCarregarTabelas, Analis…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5023/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5023/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5022/read.awp</comments><pubDate>20 Jul 2025 17:47:12 Z</pubDate><description>Exemplo de Script SQL Gerado (PostgreSQL)&#13;
Para ilustrar, aqui está um trecho de script gerado para um caso com duas tabelas rel…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5022/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5022/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5021/read.awp</comments><pubDate>20 Jul 2025 17:46:31 Z</pubDate><description>Conformidade com Diretivas&#13;
•  Renomeação de tabelas: Implementada nos métodos GerarVerificacaoTabelaExistente e GerarScriptMigr…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5021/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5021/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5020/read.awp</comments><pubDate>20 Jul 2025 17:41:09 Z</pubDate><description>Explicação dos Métodos Completados&#13;
1.  GerarIfNotExists: Concluído para suportar cláusulas condicionais de criação (IF NOT EXIS…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5020/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5020/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5019/read.awp</comments><pubDate>20 Jul 2025 17:38:29 Z</pubDate><description>Agradecendo pela confirmação da data e hora. Como você mencionou “Continue”, presumo que deseja que eu prossiga com a implementa…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5019/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5019/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5018/read.awp</comments><pubDate>20 Jul 2025 17:37:31 Z</pubDate><description>[code:wl]&#13;
Versao 12.0&#13;
&#13;
// Classe: Dct2SqlWx&#13;
// Versão: 12.0&#13;
// Descrição: Solução enterprise para geração de scripts SQL a …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5018/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5018/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5017/read.awp</comments><pubDate>20 Jul 2025 17:14:38 Z</pubDate><description>Excelente pergunta, Adriano! 👨‍💻💡&#13;
&#13;
Para que suas tabelas SQL fiquem documentadas e legíveis tanto em nível técnico quanto v…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5017/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5017/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5016/read.awp</comments><pubDate>20 Jul 2025 16:52:42 Z</pubDate><description>Concluí a análise do projeto dct2sql WX a partir do link fornecido. Criei um documento completo com a lista de recursos em tópic…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5016/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5016/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5015/read.awp</comments><pubDate>20 Jul 2025 16:50:08 Z</pubDate><description>[code:wl]&#13;
&#13;
//******************************************************************************&#13;
// DCT2SQL WX - EXEMPLOS AVANÇADO…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5015/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5015/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5014/read.awp</comments><pubDate>20 Jul 2025 14:42:43 Z</pubDate><description>## **🚀 Novos Exemplos Avançados Criados!**&#13;
&#13;
Criei **6 exemplos avançados** que cobrem cenários complexos e modernos:&#13;
&#13;
### *…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5014/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5014/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5013/read.awp</comments><pubDate>20 Jul 2025 14:42:05 Z</pubDate><description>[code:wl]&#13;
&#13;
//******************************************************************************&#13;
// DCT2SQL WX - EXEMPLOS AVANÇADO…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5013/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5013/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5012/read.awp</comments><pubDate>20 Jul 2025 14:37:35 Z</pubDate><description>## **🎯 Resumo dos Exemplos Criados**&#13;
&#13;
Criei **10 exemplos práticos completos** que demonstram todos os aspectos do DCT2SQL WX…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5012/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5012/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5011/read.awp</comments><pubDate>20 Jul 2025 14:36:56 Z</pubDate><description>//******************************************************************************&#13;
// DCT2SQL WX - EXEMPLOS PRÁTICOS DE USO&#13;
// G…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5011/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5011/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5010/read.awp</comments><pubDate>20 Jul 2025 14:30:57 Z</pubDate><description>//******************************************************************************&#13;
// DCT2SQL WX - TESTES DE INTEGRAÇÃO E DOCUMEN…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5010/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5010/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5009/read.awp</comments><pubDate>20 Jul 2025 14:29:53 Z</pubDate><description>//******************************************************************************&#13;
// DCT2SQL WX - INTERFACES GRÁFICAS E JANELAS …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5009/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5009/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5008/read.awp</comments><pubDate>20 Jul 2025 06:30:14 Z</pubDate><description>[code:wl]&#13;
&#13;
//******************************************************************************&#13;
// DCT2SQL WX - INTERFACES GRÁFIC…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5008/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5008/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5007/read.awp</comments><pubDate>20 Jul 2025 06:28:33 Z</pubDate><description>[code:wl]&#13;
&#13;
//******************************************************************************&#13;
// DCT2SQL WX - IMPLEMENTAÇÕES PR…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5007/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5007/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5006/read.awp</comments><pubDate>20 Jul 2025 06:22:17 Z</pubDate><description>Analisando toda a implementação do DCT2SQL WX apresentada no fórum, identifiquei algumas áreas que ainda poderiam ser complement…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5006/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-5006/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4793/read.awp</comments><pubDate>8 Jul 2025 08:03:10 Z</pubDate><description>Analisando o conteúdo do fórum, vejo que este é um tópico sobre **DCT2SQLWX** onde o usuário **Adriano José Boller** (Consultor …</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4793/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4793/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4792/read.awp</comments><pubDate>8 Jul 2025 07:48:33 Z</pubDate><description>Implementei as **funcionalidades finais** para completar o sistema DCT2SQL WX com **Gerador de Documentação** e **Validação Pré-…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4792/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4792/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4791/read.awp</comments><pubDate>8 Jul 2025 07:43:31 Z</pubDate><description>[code:wl]&#13;
// addons &#13;
&#13;
//******************************************************************************&#13;
// DCT2SQL WX - GERAD…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4791/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4791/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4790/read.awp</comments><pubDate>8 Jul 2025 07:29:01 Z</pubDate><description>Criei um **Sistema de Validação Completo** para o DCT2SQL WX que aumenta significativamente a confiabilidade. O sistema inclui:&#13;…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4790/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4790/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4789/read.awp</comments><pubDate>8 Jul 2025 07:27:34 Z</pubDate><description>[code:wl]&#13;
&#13;
//******************************************************************************&#13;
// DCT2SQL WX - SISTEMA DE VALIDA…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4789/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4789/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4788/read.awp</comments><pubDate>8 Jul 2025 07:19:54 Z</pubDate><description>[code:wl]&#13;
&#13;
//******************************************************************************&#13;
// DCT2SQL ENTERPRISE - IMPLEMENT…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4788/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4788/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4787/read.awp</comments><pubDate>8 Jul 2025 07:10:13 Z</pubDate><description>Agora o código do DCT2SQL está **completo** com todas as funcionalidades avançadas!&#13;
&#13;
## **📋 Resumo das Funcionalidades Implem…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4787/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4787/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4786/read.awp</comments><pubDate>8 Jul 2025 07:08:13 Z</pubDate><description>Versão a revisar e testar&#13;
&#13;
[code:wl]&#13;
&#13;
//******************************************************************************&#13;
// D…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4786/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4786/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4785/read.awp</comments><pubDate>8 Jul 2025 06:39:28 Z</pubDate><description># Transforming Dct2Sql into a World-Class Enterprise Database Management Platform&#13;
&#13;
This comprehensive analysis provides specif…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4785/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4785/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4784/read.awp</comments><pubDate>8 Jul 2025 06:02:12 Z</pubDate><description>Analisando a implementação completa da classe Dct2Sql que criamos, identifiquei algumas áreas importantes que ainda poderiam ser…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4784/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4784/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4783/read.awp</comments><pubDate>8 Jul 2025 05:58:11 Z</pubDate><description>//******************************************************************************&#13;
// CONTINUAÇÃO DA CLASSE Dct2Sql - FUNCIONALID…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4783/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4783/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4782/read.awp</comments><pubDate>8 Jul 2025 05:51:31 Z</pubDate><description>Analisando a implementação da classe Dct2Sql que criei, identifiquei algumas funcionalidades importantes que estão faltando para…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4782/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4782/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4781/read.awp</comments><pubDate>8 Jul 2025 05:46:04 Z</pubDate><description>Aqui está um resumo do que foi implementado:&#13;
&#13;
## 🎯 **Implementação Completa da Classe Dct2Sql**&#13;
&#13;
### **12 SGBDs Suportados:…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4781/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4781/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item><item><author>Boller</author><category>pcsoft.br.windev</category><comments>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4780/read.awp</comments><pubDate>8 Jul 2025 05:42:22 Z</pubDate><description>//******************************************************************************&#13;
// CONTINUAÇÃO DA CLASSE Dct2Sql - SUPORTE COM…</description><guid isPermaLink="true">https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4780/read.awp</guid><link>https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx-4780/read.awp</link><source url="https://forum.pcsoft.fr/en-US/pcsoft.br.windev/4779-dct2sqlwx/read.awp">DCT2SQLWX</source><title>Re: DCT2SQLWX</title></item></channel></rss>
