jstrachan 2002/10/23 03:10:56
Modified: sql/src/java/org/apache/commons/sql/model Column.java
Log:
added back the old constructor so at least the unit tests still compile again.
though unfortunately the unit tests are all broken these days...
Revision Changes Path
1.6 +12 -0
jakarta-commons-sandbox/sql/src/java/org/apache/commons/sql/model/Column.java
Index: Column.java
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/sql/src/java/org/apache/commons/sql/model/Column.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Column.java 21 Oct 2002 11:36:33 -0000 1.5
+++ Column.java 23 Oct 2002 10:10:55 -0000 1.6
@@ -87,6 +87,18 @@
}
public Column(String name, String type, int size, boolean required, boolean
+ primaryKey, boolean autoIncrement, String defaultValue)
+ {
+ this.name = name;
+ this.type = type;
+ this.size = size;
+ this.required = required;
+ this.primaryKey = primaryKey;
+ this.autoIncrement = autoIncrement;
+ this.defaultValue = defaultValue;
+ }
+
+ public Column(String name, String type, int size, boolean required, boolean
primaryKey, boolean autoIncrement, String defaultValue,
Integer scale, String isNullable)
{
--
To unsubscribe, e-mail: <mailto:commons-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@;jakarta.apache.org>