[teiid-commits] teiid SVN: r2358 - trunk/documentation/client-developers-guide/src/main/docbook/en-US/content.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Tue Jul 20 14:41:23 EDT 2010


Author: rareddy
Date: 2010-07-20 14:41:23 -0400 (Tue, 20 Jul 2010)
New Revision: 2358

Modified:
   trunk/documentation/client-developers-guide/src/main/docbook/en-US/content/odbc.xml
Log:
TEIID-860: Adding DSN less connection string

Modified: trunk/documentation/client-developers-guide/src/main/docbook/en-US/content/odbc.xml
===================================================================
--- trunk/documentation/client-developers-guide/src/main/docbook/en-US/content/odbc.xml	2010-07-19 22:10:45 UTC (rev 2357)
+++ trunk/documentation/client-developers-guide/src/main/docbook/en-US/content/odbc.xml	2010-07-20 18:41:23 UTC (rev 2358)
@@ -231,4 +231,21 @@
         </sect2>
         
     </sect1>
+    
+    <sect1>
+        <title>DSN Less Connection</title>
+        <para>You can also connect to Teiid VDB using ODBC with out explicitly creating a DSN. However, in these scenarios your 
+        application needs, what is called as "DSN less connection string". The below is a sample connection string </para>
+        
+        <para>For Windows:</para>
+        <programlisting><![CDATA[
+           ODBC;DRIVER={PostgreSQL Unicode};DATABASE=<vdb-name>;SERVER=<host-name>;PORT=<port>;Uid=<username>;Pwd=<password>            
+        ]]></programlisting>
+        
+        <para>>For *nix:</para>
+        <programlisting><![CDATA[
+           ODBC;DRIVER={PostgreSQL};DATABASE=<vdb-name>;SERVER=<host-name>;PORT=<port>;Uid=<username>;Pwd=<password>            
+        ]]></programlisting>  
+                  
+    </sect1>
 </chapter>
\ No newline at end of file



More information about the teiid-commits mailing list