Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [dtp-dev] connectivity.derby plugin works well?


Takehiro,

That looks like an error in the existing DDL code generation to me. I will commit the proposed change today.

Thanks,

Der-Ping Chou
Information Management Tooling
Development Manager - Data Tools
Seattle IBM Office
tel : 1-206-587-5946 (T/L: 277-5946)
fax: 1-206-587-4415



"hosokawa" <hosokawa@xxxxxxxxxxxxxxxxx>
Sent by: dtp-dev-bounces@xxxxxxxxxxx

12/25/2006 05:09 PM

Please respond to
DTP development mailing list <dtp-dev@xxxxxxxxxxx>

To
"DTP development mailing list" <dtp-dev@xxxxxxxxxxx>
cc
Subject
[dtp-dev] connectivity.derby plugin works well?





Hi,

"if" statement at line #57 in createStatements() method of
DerbyDdlGenerator.java
(org.eclipse.datatools.connectivity.internal.derby.dll.DerbyDdlGenerator.java)
is correct?

   if (!!this.generateTables(options)) continue;

My application calling this method currently doesn't work well.
But when I remove one '!' in my workspace (like below), it gets to work
well.

   if (!this.generateTables(options)) continue;


Best regards,

Takehiro Hosokawa
VALWAY Technology Center, NEC Soft, Ltd.

_______________________________________________
dtp-dev mailing list
dtp-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/dtp-dev


Back to the top