You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@turbine.apache.org by "Keith Seim || kjsdesigns.com" <kjsdesigns.com> on 2003/06/20 18:24:10 UTC

ant init error... any ideas?

Hope this is the right place to post this.  I'm thinking my errors are 
coming from having a column called "deleted"... which is perhaps used 
already by the base classes?

compile:
     [javac] Compiling 155 source files to 
/usr/local/tdk-2.2/webapps/datasphere/WEB-INF/classes
     [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclassPeer.java:74: 
DELETED is already defined in 
ca.utoronto.utm.datasphere.om.BaseStudentclassPeer
     [javac]     public static final String DELETED;
     [javac]                                ^
     [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:75: 
deleted is already defined in 
ca.utoronto.utm.datasphere.om.BaseStudentclass
     [javac]         private Date deleted;
     [javac]                      ^
     [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:279: 
getDeleted() is already defined in 
ca.utoronto.utm.datasphere.om.BaseStudentclass
     [javac]         public Date getDeleted()
     [javac]                     ^
     [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:290: 
setDeleted(java.util.Date) is already defined in 
ca.utoronto.utm.datasphere.om.BaseStudentclass
     [javac]         public void setDeleted(Date v)
     [javac]                     ^
     [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
INF/src/java/ca/utoronto/utm/datasphere/om/BaseTurbinePermissionPeer.java:
111: cannot resolve symbol
     [javac] symbol  : method forName (java.lang.String)
     [javac] location: class ca.utoronto.utm.datasphere.om.Class
     [javac]             c = Class.forName(className);
.....
___________________________________
Keith Seim • http://kjsdesigns.com


---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-user-help@jakarta.apache.org


Re: ant init error... any ideas?

Posted by "Keith Seim || kjsdesigns.com" <kjsdesigns.com>.
<note: sorry if this message is delivered twice>

I tried changing all my Deleted columns' names to "EntryDeleted"... same 
error, just with a different column tag.  Guess that wasn't it... any 
suggestions?

On Friday, June 20, 2003, at 12:40  PM, Quinton McCombs wrote:

> It does appear that way.  Try removing that column from the table
> definition in your schema file.  If that works, you will need to use
> another column name in your database.
>
> --------------------------------------------
> Quinton McCombs
> NequalsOne - HealthCare marketing tools
> mailto:qmccombs@NequalsOne.com
> http://www.NequalsOne.com
>
>> -----Original Message-----
>> From: Keith Seim||kjsdesigns.com
>> [mailto:kjsdesigns.com@nequalsone.com]
>> Sent: Friday, June 20, 2003 11:24 AM
>> To: turbine-user@jakarta.apache.org
>> Subject: ant init error... any ideas?
>>
>>
>> Hope this is the right place to post this.  I'm thinking my
>> errors are
>> coming from having a column called "deleted"... which is perhaps used
>> already by the base classes?
>>
>> compile:
>>      [javac] Compiling 155 source files to
>> /usr/local/tdk-2.2/webapps/datasphere/WEB-INF/classes
>>      [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
>> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclassPee
>> r.java:74:
>> DELETED is already defined in
>> ca.utoronto.utm.datasphere.om.BaseStudentclassPeer
>>      [javac]     public static final String DELETED;
>>      [javac]                                ^
>>      [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
>> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:75:
>> deleted is already defined in
>> ca.utoronto.utm.datasphere.om.BaseStudentclass
>>      [javac]         private Date deleted;
>>      [javac]                      ^
>>      [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
>> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:279:
>> getDeleted() is already defined in
>> ca.utoronto.utm.datasphere.om.BaseStudentclass
>>      [javac]         public Date getDeleted()
>>      [javac]                     ^
>>      [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
>> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:290:
>> setDeleted(java.util.Date) is already defined in
>> ca.utoronto.utm.datasphere.om.BaseStudentclass
>>      [javac]         public void setDeleted(Date v)
>>      [javac]                     ^
>>      [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
>> INF/src/java/ca/utoronto/utm/datasphere/om/BaseTurbinePermissi
>> onPeer.java:
>> 111: cannot resolve symbol
>>      [javac] symbol  : method forName (java.lang.String)
>>      [javac] location: class ca.utoronto.utm.datasphere.om.Class
>>      [javac]             c = Class.forName(className);
>> .....
>> ___________________________________
>> Keith Seim . http://kjsdesigns.com
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
>> For additional commands, e-mail: turbine-user-help@jakarta.apache.org
>>
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: turbine-user-help@jakarta.apache.org
>
>
>
___________________________________
Keith Seim • http://kjsdesigns.com


---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-user-help@jakarta.apache.org


RE: ant init error... any ideas?

Posted by Quinton McCombs <qm...@nequalsone.com>.
It does appear that way.  Try removing that column from the table
definition in your schema file.  If that works, you will need to use
another column name in your database.

--------------------------------------------
Quinton McCombs
NequalsOne - HealthCare marketing tools
mailto:qmccombs@NequalsOne.com
http://www.NequalsOne.com 

> -----Original Message-----
> From: Keith Seim||kjsdesigns.com 
> [mailto:kjsdesigns.com@nequalsone.com] 
> Sent: Friday, June 20, 2003 11:24 AM
> To: turbine-user@jakarta.apache.org
> Subject: ant init error... any ideas?
> 
> 
> Hope this is the right place to post this.  I'm thinking my 
> errors are 
> coming from having a column called "deleted"... which is perhaps used 
> already by the base classes?
> 
> compile:
>      [javac] Compiling 155 source files to 
> /usr/local/tdk-2.2/webapps/datasphere/WEB-INF/classes
>      [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclassPee
> r.java:74: 
> DELETED is already defined in 
> ca.utoronto.utm.datasphere.om.BaseStudentclassPeer
>      [javac]     public static final String DELETED;
>      [javac]                                ^
>      [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:75: 
> deleted is already defined in 
> ca.utoronto.utm.datasphere.om.BaseStudentclass
>      [javac]         private Date deleted;
>      [javac]                      ^
>      [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:279: 
> getDeleted() is already defined in 
> ca.utoronto.utm.datasphere.om.BaseStudentclass
>      [javac]         public Date getDeleted()
>      [javac]                     ^
>      [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:290: 
> setDeleted(java.util.Date) is already defined in 
> ca.utoronto.utm.datasphere.om.BaseStudentclass
>      [javac]         public void setDeleted(Date v)
>      [javac]                     ^
>      [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
> INF/src/java/ca/utoronto/utm/datasphere/om/BaseTurbinePermissi
> onPeer.java:
> 111: cannot resolve symbol
>      [javac] symbol  : method forName (java.lang.String)
>      [javac] location: class ca.utoronto.utm.datasphere.om.Class
>      [javac]             c = Class.forName(className);
> .....
> ___________________________________
> Keith Seim . http://kjsdesigns.com
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: turbine-user-help@jakarta.apache.org
> 
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-user-help@jakarta.apache.org


Re: ant init error... any ideas?

Posted by "Keith Seim || kjsdesigns.com" <kjsdesigns.com>.
I tried changing all my Deleted columns' names to "EntryDeleted"... same 
error, just with a different column tag.  Guess that wasn't it... any 
suggestions?


On Friday, June 20, 2003, at 12:24  PM, Keith Seim || kjsdesigns.com 
wrote:

> Hope this is the right place to post this.  I'm thinking my errors are 
> coming from having a column called "deleted"... which is perhaps used 
> already by the base classes?
>
> compile:
>     [javac] Compiling 155 source files to 
> /usr/local/tdk-2.2/webapps/datasphere/WEB-INF/classes
>     [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclassPeer.java:74: 
> DELETED is already defined in 
> ca.utoronto.utm.datasphere.om.BaseStudentclassPeer
>     [javac]     public static final String DELETED;
>     [javac]                                ^
>     [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:75: 
> deleted is already defined in 
> ca.utoronto.utm.datasphere.om.BaseStudentclass
>     [javac]         private Date deleted;
>     [javac]                      ^
>     [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:279: 
> getDeleted() is already defined in 
> ca.utoronto.utm.datasphere.om.BaseStudentclass
>     [javac]         public Date getDeleted()
>     [javac]                     ^
>     [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
> INF/src/java/ca/utoronto/utm/datasphere/om/BaseStudentclass.java:290: 
> setDeleted(java.util.Date) is already defined in 
> ca.utoronto.utm.datasphere.om.BaseStudentclass
>     [javac]         public void setDeleted(Date v)
>     [javac]                     ^
>     [javac] /usr/local/tdk-2.2/webapps/datasphere/WEB-
> INF/src/java/ca/utoronto/utm/datasphere/om/BaseTurbinePermissionPeer.java:
> 111: cannot resolve symbol
>     [javac] symbol  : method forName (java.lang.String)
>     [javac] location: class ca.utoronto.utm.datasphere.om.Class
>     [javac]             c = Class.forName(className);
> .....
___________________________________
Keith Seim • http://kjsdesigns.com
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: turbine-user-help@jakarta.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-user-help@jakarta.apache.org