I think I see.  These are screen classes (and the
like) that need to be modified.

Went by me when I was reading the docs.  I'll try to
work through it now.

Sorry for jumping the gun on the list,
Terry



--- Terry McBride <[EMAIL PROTECTED]> wrote:
> Hi all,
> 
> Brand new Turbine user.
> Been trying to build a sample app with the following
> schema...
> 
> <database>
>   <table name="CATALOG">
>     <column name="CATALOG_ID" required="true"
> autoIncrement="true" primaryKey="t
> rue" type="INTEGER"/>
>     <column name="TITLE" size="255" type="VARCHAR"/>
>     <column name="SUMMARY" size="255"
> type="VARCHAR"/>
>     <column name="AUTHOR_ID" type="INTEGER"/>
>     <foreign-key foreignTable="AUTHOR">
>         <reference local="AUTHOR_ID"
> foreign="AUTHOR_ID"/>
>     </foreign-key>
>     <column name="KEYWORDS" size="255"
> type="VARCHAR"/>
>  </table>
>  <table name="AUTHOR">
>     <column name="AUTHOR_ID" required="true"
> autoIncrement="true" primaryKey="tr
> ue" type="INTEGER"/>
>     <column name="NAME" size="255" type="VARCHAR"/>
>     <column name="DOB" type="DATE"/>
>     <column name="POB" size="255" type="VARCHAR"/>
>  </table>
>  </database>
> 
> simple enough.
> 
> when I build it (ant init) everything goes fine
> until
> compilation. then ......
> 
> [javac] Compiling 30 source files to
>
/usr/local/jakarta/tdk/webapps/goddamnit/WEB-INF/classes
>     [javac]
>
/usr/local/jakarta/tdk/webapps/goddamnit/WEB-INF/src/java/org/mycompany/goddamnit/modules
> /screens/Form.java:64: cannot resolve symbol
>     [javac] symbol  : class Rdf
>     [javac] location: package om
>     [javac] import org.mycompany.goddamnit.om.Rdf;
>     [javac]                                   ^
>     [javac]
>
/usr/local/jakarta/tdk/webapps/goddamnit/WEB-INF/src/java/org/mycompany/goddamnit/modules
> /screens/Form.java:65: cannot resolve symbol
>     [javac] symbol  : class RdfPeer
>     [javac] location: package om
>     [javac] import
> org.mycompany.goddamnit.om.RdfPeer;
> 
> */om/ contains the following...
> 
> # ls ../src/java/org/mycompany/goddamnit/om/
> Author.java           BaseAuthorPeer.java  
> Catalog.java
> AuthorPeer.java       BaseCatalog.java     
> CatalogPeer.java
> BaseAuthor.java       BaseCatalogPeer.java  map
> 
> 
> Rdf is a table in the newapp sample app packaged
> with
> the tdk.  Why is it needed? or is it?
> 
> I'm on a sparc with solaris.
> 
> Please advise.
> 
> Thanks,
> Terry
> 
> Terry
> 
> __________________________________________________
> Do You Yahoo!?
> Make international calls for as low as $.04/minute
> with Yahoo! Messenger
> http://phonecard.yahoo.com/
> 
>
---------------------------------------------------------------------
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 


__________________________________________________
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to