You probably won't see that every Greater and Lower-Letter is replaced by somthing < $GT (Hope this is not replacet if you read the mail ;-) )
-----Urspr�ngliche Nachricht----- Von: Michael C. Starkie [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 14. M�rz 2003 16:32 An: Turbine Users List Betreff: Re: AW: Re: newbie create new table Can you read this now? <!-- --> <!-- T U R B I N E P R O J E C T S C H E M A --> <!-- --> <!-- ==================================================================== --> <!-- This is an example Turbine project schema. --> <!-- ==================================================================== --> <database> <table name="PROJECT"> <column name="PROJECT_ID" required="true" autoIncrement="true" primaryKey="true" type="INTEGER"/> <column name="TITLE" size="255" type="VARCHAR"/> <column name="DESCRIPTION" size="255" type="VARCHAR"/> </table> <table name="TASK"> <column name="TASK_ID" required="true" autoIncrement="true" primaryKey="true" type="INTEGER"/> <column name="PROJECT_ID" required="true" type="INTEGER"/> <column name="DESCRIPTION" size="255" type="VARCHAR"/> <column name="START_DATE" type="TIMESTAMP"/> <column name="END_DATE" required="false" type="TIMESTAMP"/> <column name="STATUS_ID" type="INTEGER"/> <column name="IMPLEMENTER" size="50" type="VARCHAR"/> <foreign-key foreignTable="PROJECT"> <reference local="PROJECT_ID" foreign="PROJECT_ID"/> </foreign-key> </table> </database> -------Original Message------- > From: [EMAIL PROTECTED] > Subject: Re: AW: Re: newbie create new table > Sent: 14 Mar 2003 15:13:15 > > > Sorry but your XML-File is still not readable. > I can't. > > Dieter > > -----Urspr�ngliche Nachricht----- > Von: Michael C. Starkie [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 14. M�rz 2003 16:03 > An: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Betreff: Re: Re: newbie create new table > > > Sorry, I'll try again. > > Here is the database I want to create. What do I need to do in order to > build the front end. Just some general topics would be fine to point me > in the right direction. > > I created the table but I don't understand the syntax of the .vm files > and I don't know the relationship between the schema changes and the > java files that are generated and which need modification and which do > not. > > Thanks, > Mike > > > > > > autoIncrement="true" primaryKey="true" > type="INTEGER"/> > > type="VARCHAR"/> > > type="VARCHAR"/> > > > > > autoIncrement="true" primaryKey="true" > type="INTEGER"/> > > type="INTEGER"/> > > type="VARCHAR"/> > > type="TIMESTAMP"/> > > type="TIMESTAMP"/> > > > type="VARCHAR"/> > > > > > foreign="PROJECT_ID"/> > > > > > > > -------Original Message------- > > From: [EMAIL PROTECTED] > Subject: Re: Re: newbie create new table > > Sent: 14 Mar 2003 12:30:26 > > > > > > "Michael C. Starkie" [EMAIL PROTECTED]> > writes: > > > > >--_b2ed085c350627538371f931b1fbf8d27 > > >Content-Type: text/plain; > > > > >Content-Transfer-Encoding: base64 > > > > Hm, > > > > I'd like to help you but please use text/plain. > > > > Regards > > Henning > > > > -- > > Dipl.-Inf. (Univ.) Henning P. Schmiedehausen INTERMETA > GmbH > > [EMAIL PROTECTED] +49 9131 50 654 0 > http://www.intermeta.de/ > > > > Java, perl, Solaris, Linux, xSP Consulting, Web Services > > freelance consultant -- Jakarta Turbine Development -- hero > for hire > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: > [EMAIL PROTECTED] > > For additional commands, e-mail: > [EMAIL PROTECTED] > > > -------Original Message------- > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > -------Original Message------- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
