svn commit: r422981 - /db/ddlutils/trunk/src/java/org/apache/ddlutils/task/WriteSchemaSqlToFileCommand.java

2006-07-18 Thread tomdz
Author: tomdz Date: Mon Jul 17 23:00:24 2006 New Revision: 422981 URL: http://svn.apache.org/viewvc?rev=422981view=rev Log: Fix for DDLUTILS-92 Modified: db/ddlutils/trunk/src/java/org/apache/ddlutils/task/WriteSchemaSqlToFileCommand.java Modified:

[jira] Resolved: (DDLUTILS-89) Add support for ordering of foreign keys when reading from a live database

2006-07-18 Thread Thomas Dudziak (JIRA)
[ http://issues.apache.org/jira/browse/DDLUTILS-89?page=all ] Thomas Dudziak resolved DDLUTILS-89. Resolution: Fixed The platform interface has a new property foreignKeysSorted, and the two tasks (DatabaseToDdl, DdlToDatabase) have a related

svn commit: r423366 - /db/ddlutils/trunk/src/test/org/apache/ddlutils/io/TestAlteration.java

2006-07-18 Thread tomdz
Author: tomdz Date: Tue Jul 18 21:47:49 2006 New Revision: 423366 URL: http://svn.apache.org/viewvc?rev=423366view=rev Log: Workaround for a strange behavior of the DB2 database Modified: db/ddlutils/trunk/src/test/org/apache/ddlutils/io/TestAlteration.java Modified:

[jira] Resolved: (DDLUTILS-114) decimal scale never gets written to schema-file in WriteSchema* Tasks

2006-07-18 Thread Thomas Dudziak (JIRA)
[ http://issues.apache.org/jira/browse/DDLUTILS-114?page=all ] Thomas Dudziak resolved DDLUTILS-114. - Resolution: Fixed decimal scale never gets written to schema-file in WriteSchema* Tasks

[jira] Resolved: (DDLUTILS-43) jdbc model reader does not set the database name

2006-07-18 Thread Thomas Dudziak (JIRA)
[ http://issues.apache.org/jira/browse/DDLUTILS-43?page=all ] Thomas Dudziak resolved DDLUTILS-43. Resolution: Fixed The name is now taken from the catalog read from the database metadata, or it can be supplied to both the API and the Ant task. If

[jira] Resolved: (DDLUTILS-20) Oracle FLOAT and DOUBLE type mappings have zero scale

2006-07-18 Thread Thomas Dudziak (JIRA)
[ http://issues.apache.org/jira/browse/DDLUTILS-20?page=all ] Thomas Dudziak resolved DDLUTILS-20. Resolution: Fixed DdlUtils now uses DOUBLE PRECISION, FLOAT and REAL respectively for these types as these are available at least in Oracle 8 and

[jira] Resolved: (DDLUTILS-18) DB2 autoincrement

2006-07-18 Thread Thomas Dudziak (JIRA)
[ http://issues.apache.org/jira/browse/DDLUTILS-18?page=all ] Thomas Dudziak resolved DDLUTILS-18. Resolution: Fixed A table defined as CREATE TABLE Test ( PK INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY, PRIMARY KEY (PK) ) is now

[jira] Commented: (DDLUTILS-63) ddltoDatabase errors due to specific string values in table rows of data.xml -- ddltoDatabase(to MySQL) using files produced by databaseToDdl(from MSSQL)

2006-07-18 Thread Thomas Dudziak (JIRA)
[ http://issues.apache.org/jira/browse/DDLUTILS-63?page=comments#action_12422035 ] Thomas Dudziak commented on DDLUTILS-63: Could you state the row as it is in the database (e.g. copied from a sql tool) ? I'm not quite sure whether the

[jira] Resolved: (DDLUTILS-14) Sybase autoincrement column

2006-07-18 Thread Thomas Dudziak (JIRA)
[ http://issues.apache.org/jira/browse/DDLUTILS-14?page=all ] Thomas Dudziak resolved DDLUTILS-14. Resolution: Fixed Sybase auto-increment reading should work now. Could you perhaps run that again (I don't have a Sybase installation at the moment)

[jira] Commented: (DDLUTILS-61) column DEFAULT - SQL error during create table in ddlToDatabase( to MySQL) using files produced by databaseToDdl(from MSSQL)

2006-07-18 Thread Thomas Dudziak (JIRA)
[ http://issues.apache.org/jira/browse/DDLUTILS-61?page=comments#action_12422037 ] Thomas Dudziak commented on DDLUTILS-61: Could you state the row as it is in the database, e.g by copying from some SQL tool ? I'm interested in the

[jira] Resolved: (DDLUTILS-50) FK Constraints Failing on Merge in MS-SQL

2006-07-18 Thread Thomas Dudziak (JIRA)
[ http://issues.apache.org/jira/browse/DDLUTILS-50?page=all ] Thomas Dudziak resolved DDLUTILS-50. Resolution: Fixed This now works (with the revised database alteration algorithm). Actually, now there won't be any SQL executed (as it should be

[jira] Resolved: (DDLUTILS-51) BOOLEANINT for MS-SQL desires TINYINT, but uses SMALLINT

2006-07-18 Thread Thomas Dudziak (JIRA)
[ http://issues.apache.org/jira/browse/DDLUTILS-51?page=all ] Thomas Dudziak resolved DDLUTILS-51. Resolution: Fixed This works now, DdlUtils will not change the column if you run the schema against the database again: [ddlToDatabase] INFO:

svn commit: r423380 - in /db/ddlutils/trunk/src/java/org/apache/ddlutils: alteration/ColumnOrderChange.java platform/PlatformImplBase.java util/SqlTokenizer.java

2006-07-18 Thread tomdz
Author: tomdz Date: Tue Jul 18 22:52:52 2006 New Revision: 423380 URL: http://svn.apache.org/viewvc?rev=423380view=rev Log: Javadoc fixes Modified: db/ddlutils/trunk/src/java/org/apache/ddlutils/alteration/ColumnOrderChange.java