To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=62164





------- Additional comments from [EMAIL PROTECTED] Mon Feb 20 09:11:32 -0800 
2006 -------
OK,

I used the MYSQL administrator to create the following:

CREATE TABLE `openoffice`.`smplName` (
  `ID` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
  `Name` VARCHAR(45) NOT NULL DEFAULT '',
  `DeptID` INTEGER UNSIGNED NOT NULL DEFAULT 0,
  PRIMARY KEY(`ID`)
)
ENGINE = InnoDB;

CREATE TABLE `openoffice`.`smplDept` (
  `ID` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
  `Department` VARCHAR(45) NOT NULL DEFAULT '',
  PRIMARY KEY(`ID`)
)
ENGINE = InnoDB;

ALTER TABLE `openoffice`.`smplname` ADD CONSTRAINT `FK_smplname_1` FOREIGN KEY
`FK_smplname_1` (`ID`)
    REFERENCES `smpldept` (`ID`)
    ON DELETE CASCADE
    ON UPDATE CASCADE;

I then opened my Base file that connects to this schema. I opened the
Relationship window and added the two new tables. NO relationship is shown
between them.

I then used the Administrator to drop the FK, and performed all the steps
mentioned in my first entry with exactly the same results. I can create the
relationsips using Base via the dialog, but not via the UI. Once closed the
relationship is not shown when the relationship window opens again. 


---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to