Bug #15585 Migration Tool Closes when you try to Generate Script or Save Current State
Submitted: 8 Dec 2005 12:40 Modified: 9 Dec 2005 17:05
Reporter: Guilherme Silva Email Updates:
Status: Can't repeat Impact on me:
None 
Category:MySQL Migration Toolkit Severity:S3 (Non-critical)
Version:1.0.21rc OS:Windows (Windows 2003 Server)
Assigned to: MySQL Verification Team CPU Architecture:Any

[8 Dec 2005 12:40] Guilherme Silva
Description:
After making all the process correctly. I tried to save the current state of Migration Toolkit and it closes without any warning.

It also happens when you try to generate a script of a migration process.

Java Version: 1.5.0_06

How to repeat:
Follow all the steps of migration process and try to generate a migration script.

Or try to store or restore the current state of application.
[9 Dec 2005 17:05] MySQL Verification Team
I was unable to repeat the behavior reported using an Access 2003
as source database.

-- ----------------------------------------------------------------------
-- MySQL Migration Toolkit
-- SQL Create Script
-- ----------------------------------------------------------------------

SET FOREIGN_KEY_CHECKS = 0;

CREATE DATABASE IF NOT EXISTS `dbtest`
  CHARACTER SET latin1 COLLATE latin1_swedish_ci;
-- -------------------------------------
-- Tables

DROP TABLE IF EXISTS `dbtest`.`tb1`;
CREATE TABLE `dbtest`.`tb1` (
  `id` INT(10) NULL,
  `name` VARCHAR(50) NULL,
  INDEX `id` (`id`)
)
ENGINE = INNODB;

SET FOREIGN_KEY_CHECKS = 1;

-- ----------------------------------------------------------------------
-- EOF