[teiid-commits] teiid SVN: r1027 - trunk/documentation/quick-start-example/src/main/docbook/en-US/content.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Mon Jun 8 10:08:42 EDT 2009


Author: shawkins
Date: 2009-06-08 10:08:42 -0400 (Mon, 08 Jun 2009)
New Revision: 1027

Modified:
   trunk/documentation/quick-start-example/src/main/docbook/en-US/content/buildvdb.xml
   trunk/documentation/quick-start-example/src/main/docbook/en-US/content/deployment.xml
   trunk/documentation/quick-start-example/src/main/docbook/en-US/content/download.xml
   trunk/documentation/quick-start-example/src/main/docbook/en-US/content/example-explained.xml
Log:
TEIID-645 updating the quickstart for 6.1

Modified: trunk/documentation/quick-start-example/src/main/docbook/en-US/content/buildvdb.xml
===================================================================
--- trunk/documentation/quick-start-example/src/main/docbook/en-US/content/buildvdb.xml	2009-06-08 13:25:47 UTC (rev 1026)
+++ trunk/documentation/quick-start-example/src/main/docbook/en-US/content/buildvdb.xml	2009-06-08 14:08:42 UTC (rev 1027)
@@ -28,7 +28,7 @@
       list that will take you though all the steps involved.</para>
     <orderedlist>
       <listitem>
-        <para>Switch to the Designer Perspective, by opening the "Window->Open Prespective.."</para>
+        <para>Switch to the Designer Perspective, by opening the "Window->Open Perspective.."</para>
       </listitem>
       <listitem>
         <para>Create new "Model Project", using "File->New->ModelProject"</para>

Modified: trunk/documentation/quick-start-example/src/main/docbook/en-US/content/deployment.xml
===================================================================
--- trunk/documentation/quick-start-example/src/main/docbook/en-US/content/deployment.xml	2009-06-08 13:25:47 UTC (rev 1026)
+++ trunk/documentation/quick-start-example/src/main/docbook/en-US/content/deployment.xml	2009-06-08 14:08:42 UTC (rev 1027)
@@ -31,21 +31,12 @@
   <para />
   <sect1 id="stand-alone-deployment">
     <title>Stand-alone Application Deployment</title>
-    <para>Copy the "Teiid-${version}-embedded.jar" and all dependent jars in "lib" directory in your Java
-      application's classpath along with your VDB. If your application is already using the any of dependent jars
-      defined in "lib" directory you can safely ignore adding that jar file to the classpath. Make sure the that
-      the versions match</para>
     <orderedlist>
       <listitem>
-        <para>Add "Teiid-${version}-embedded.jar" to your application classpath</para>
+        <para>Add the "${embedded root}/teiid-${version}-client.jar" to your application classpath</para>
       </listitem>
       <listitem>
-        <para>Add all the dependent jar files in the "lib" directory to your application's classpath. If your
-          application is already using the any of the "lib" directory's dependent jars, you can safely ignore
-          adding that jar to the classpath. Make sure the versions match.</para>
-      </listitem>
-      <listitem>
-        <para>Place the VDB in a folder and add this folder to your application's classpath.
+        <para>Place your VDB in a the "${embedded root}/deploy" or another location referenced by the deploy.properties file. 
         </para>
       </listitem>
       <listitem>

Modified: trunk/documentation/quick-start-example/src/main/docbook/en-US/content/download.xml
===================================================================
--- trunk/documentation/quick-start-example/src/main/docbook/en-US/content/download.xml	2009-06-08 13:25:47 UTC (rev 1026)
+++ trunk/documentation/quick-start-example/src/main/docbook/en-US/content/download.xml	2009-06-08 14:08:42 UTC (rev 1027)
@@ -24,8 +24,8 @@
     <emphasis>Teiid Embedded Kit</emphasis>
     and extract this tar/zip file to a directory you can access.
   </para>
-  <para>In the expanded directory, you will find "Teiid-${version}-embedded.jar", which is the main binary jar
-    file for Teiid Embedded, and the "lib" and "extension" directories containing supporting 3rd party binaries
+  <para>In the expanded directory, you will find "teiid-${version}-client.jar", which is the main client binary jar
+    file for Teiid Embedded, and the "lib" and "extension" directories containing binaries either directly or indirectly
     required to execute Teiid Embedded. Later sections describe installing these artifacts.</para>
   <note>
     <para>

Modified: trunk/documentation/quick-start-example/src/main/docbook/en-US/content/example-explained.xml
===================================================================
--- trunk/documentation/quick-start-example/src/main/docbook/en-US/content/example-explained.xml	2009-06-08 13:25:47 UTC (rev 1026)
+++ trunk/documentation/quick-start-example/src/main/docbook/en-US/content/example-explained.xml	2009-06-08 14:08:42 UTC (rev 1027)
@@ -82,45 +82,19 @@
     <programlisting><![CDATA[      
           - -Contains the name and address of a Customer who owns portfolio account 
           CREATE TABLE CUSTOMER
-          (
-             SSN char(10),
-             FIRSTNAME varchar(64),
-             LASTNAME varchar(64),
-             ST_ADDRESS varchar(256),
-             APT_NUMBER varchar(32),
-             CITY varchar(64),
-             STATE varchar(32),
-             ZIPCODE varchar(10),
-             PHONE varchar(15)
-          );
+          ...
           
           --Contains Customer's account number and its current status
           CREATE TABLE ACCOUNT
-          (
-             ACCOUNT_ID integer,
-             SSN char(10),
-             STATUS char(10),
-             TYPE char(10),
-             DATEOPENED timestamp,
-             DATECLOSED timestamp
-          );
-          
+          ...
+                    
           --Contains information about stock symbol, company name etc.
-          CREATE TABLE PRODUCT (
-             ID integer,
-             SYMBOL varchar(16),
-             COMPANY_NAME varchar(256)
-          );
+          CREATE TABLE PRODUCT
+          ...
           
           --Contains each Account's holdings of Stocks   
           CREATE TABLE HOLDINGS
-          (
-             TRANSACTION_ID integer,
-             ACCOUNT_ID integer,
-             PRODUCT_ID integer,
-             PURCHASE_DATE timestamp,
-             SHARES_COUNT integer
-          );                  
+          ...
     ]]>
     </programlisting>
     <para>We need to start the Derby RDBMS and create the "accounts" database with the below schema. These




More information about the teiid-commits mailing list