View Revisions: Issue #6201

Summary 0006201: Add support for NTypes in XML
Revision 2024-01-23 16:05 by cquamme
Description Currently, the XML of an oracle column of type NVARCHAR2 looks like this:

<column name="NVARCHAR2TEST" type="VARCHAR" size="255">
            <platform-column name="oracle23" type="NVARCHAR2" size="255"/>
</column>

This incorrectly identifies an Oracle NVARCHAR2 as a VARCHAR.
Revision 2024-01-23 16:11 by cquamme
Description Any platform that supports NTypes should output this type in its XML, and other platforms should be able to accept this XML.

So for example, currently, the XML of an oracle column of type NVARCHAR2 looks like this:

<column name="NVARCHAR2TEST" type="VARCHAR" size="255">
            <platform-column name="oracle23" type="NVARCHAR2" size="255"/>
</column>

This incorrectly identifies an Oracle NVARCHAR2 as a VARCHAR, when it should be a type NVARCHAR.
Revision 2024-01-23 16:29 by cquamme
Description Any platform that supports NTypes should output this type in its XML, and other platforms should be able to accept this XML.

So for example, currently, the XML of an oracle column of type NVARCHAR2 looks like this:

<column name="NVARCHAR2TEST" type="VARCHAR" size="255">
            <platform-column name="oracle23" type="NVARCHAR2" size="255"/>
</column>

This incorrectly identifies an Oracle NVARCHAR2 as a VARCHAR, when it should be a type NVARCHAR. Here's the correct XML:

<column name="NVARCHAR2TEST" type="NVARCHAR" size="255">
        <platform-column name="oracle23" type="NVARCHAR2" size="255"/>
</column>