Book a Demo

Author Topic: pb with DDL generation MySQL  (Read 3155 times)

gerolindien

  • EA Novice
  • *
  • Posts: 4
  • Karma: +0/-0
    • View Profile
pb with DDL generation MySQL
« on: July 05, 2004, 09:44:44 pm »
Hi, I m happy to see that the 4.1 version finally fix the index generation bug  :) (before, only the first index was generated.)
Unfortunately i met a new pb there: a "," is missing before the constraint "PRIMARY KEY(id)"

The following code is generated:

CREATE TABLE CLAIM (
     id INTEGER AUTO_INCREMENT  NOT NULL,
     user_id INTEGER,
     last_update_user_id INTEGER
     PRIMARY KEY(id)
)Type=InnoDB
;


KP

  • EA Administrator
  • EA Expert
  • *****
  • Posts: 2919
  • Karma: +55/-3
    • View Profile
Re: pb with DDL generation MySQL
« Reply #1 on: July 05, 2004, 10:18:51 pm »
By coincidence, someone else reported that this morning and I've just finished fixing it. It will be in the next release.
The Sparx Team
[email protected]

gerolindien

  • EA Novice
  • *
  • Posts: 4
  • Karma: +0/-0
    • View Profile
Re: pb with DDL generation MySQL
« Reply #2 on: July 05, 2004, 10:42:14 pm »
Great, thx!