I'm having issues attmepting to set up an Entity Record Type based on an exi

I'm having issues attmepting to set up an Entity Record Type based on an existing mySQL table.

I manually created a data type based on the database (is there a way to import the structure from mySQL instead?). I then exported the XSD and manually updated that file to indicate that the a_id field was the primary field and would be auto-incremented. I then removed the original data type and attempted to import the new XSD file, but get a message that

The element type "xsd:sequence" must be terminated by the matching end-tag "</xsd:sequence>"

Although the XSD file definitely has both of those tags:

<xsd:schema
targetNamespace="obmdev.appiancloud.com/.../"
xmlns:types150="obmdev.appiancloud.com/.../" xmlns:xsd="www.w3.org/.../XMLSchema">
<xsd:complexType name="training">
<xsd:sequence>
<xsd:element name="a_id" nillable="true" type="xsd:int"/>
                    <xsd:annotation>
                    <xsd:appinfo source="appian.jpa">...

OriginalPostID-76791

OriginalPostID-76791

  Discussion posts and replies are publicly visible

Parents
  • OK--that fixed the first issue. Now, once I create the "training" data type, then attempt to create the data store based on it, I get the "no matching tables found" message when verifying it. The detailed message:

    The data source schema does not match the type mappings: Missing column: aid in Appian.training (APNX-2-4056-000)

    The actual field name is "a_id"). Is there an issue using an underscore in a DB table field?
Reply
  • OK--that fixed the first issue. Now, once I create the "training" data type, then attempt to create the data store based on it, I get the "no matching tables found" message when verifying it. The detailed message:

    The data source schema does not match the type mappings: Missing column: aid in Appian.training (APNX-2-4056-000)

    The actual field name is "a_id"). Is there an issue using an underscore in a DB table field?
Children
No Data