[teiid-commits] teiid SVN: r1374 - in trunk/test-integration/db/src/main/resources/datasources: derby and 3 other directories.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Fri Sep 18 13:41:31 EDT 2009


Author: vhalbert at redhat.com
Date: 2009-09-18 13:41:30 -0400 (Fri, 18 Sep 2009)
New Revision: 1374

Added:
   trunk/test-integration/db/src/main/resources/datasources/oracle/
   trunk/test-integration/db/src/main/resources/datasources/oracle/example_connection.properties
   trunk/test-integration/db/src/main/resources/datasources/sqlserver/
   trunk/test-integration/db/src/main/resources/datasources/sqlserver/example_connection.properties
Modified:
   trunk/test-integration/db/src/main/resources/datasources/derby/example_connection.properties
   trunk/test-integration/db/src/main/resources/datasources/mysql/example_connection.properties
Log:
Teiid 773 - organize integration test

Modified: trunk/test-integration/db/src/main/resources/datasources/derby/example_connection.properties
===================================================================
--- trunk/test-integration/db/src/main/resources/datasources/derby/example_connection.properties	2009-09-18 17:37:15 UTC (rev 1373)
+++ trunk/test-integration/db/src/main/resources/datasources/derby/example_connection.properties	2009-09-18 17:41:30 UTC (rev 1374)
@@ -1,4 +1,4 @@
-# db.type must match a ddl folder and it also represents the ANT sql datatype used during execution 
+# db.type must match a ddl folder 
 db.type=derby
 driver=org.apache.derby.jdbc.ClientDriver
 URL=jdbc:derby://localhost:1527//(derby location)

Modified: trunk/test-integration/db/src/main/resources/datasources/mysql/example_connection.properties
===================================================================
--- trunk/test-integration/db/src/main/resources/datasources/mysql/example_connection.properties	2009-09-18 17:37:15 UTC (rev 1373)
+++ trunk/test-integration/db/src/main/resources/datasources/mysql/example_connection.properties	2009-09-18 17:41:30 UTC (rev 1374)
@@ -1,4 +1,4 @@
-# db.type must match a ddl folder and it also represents the ANT sql datatype used during execution 
+# db.type must match a ddl folder 
 db.type=mysql
 driver=com.mysql.jdbc.Driver
 URL=jdbc:mysql://(servername):3306/(databasename)

Added: trunk/test-integration/db/src/main/resources/datasources/oracle/example_connection.properties
===================================================================
--- trunk/test-integration/db/src/main/resources/datasources/oracle/example_connection.properties	                        (rev 0)
+++ trunk/test-integration/db/src/main/resources/datasources/oracle/example_connection.properties	2009-09-18 17:41:30 UTC (rev 1374)
@@ -0,0 +1,18 @@
+# db.type must match a ddl folder 
+db.type=oracle
+driver=oracle.jdbc.OracleDriver
+URL=jdbc:oracle:thin:@(servername):1521:(sid)
+User=
+Password=
+
+servername=(servername)
+databasename=(databasename)
+portnumber=1527
+ds-jndiname=(servername)_1527
+
+Immutable=true
+
+
+
+
+


Property changes on: trunk/test-integration/db/src/main/resources/datasources/oracle/example_connection.properties
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: trunk/test-integration/db/src/main/resources/datasources/sqlserver/example_connection.properties
===================================================================
--- trunk/test-integration/db/src/main/resources/datasources/sqlserver/example_connection.properties	                        (rev 0)
+++ trunk/test-integration/db/src/main/resources/datasources/sqlserver/example_connection.properties	2009-09-18 17:41:30 UTC (rev 1374)
@@ -0,0 +1,18 @@
+# db.type must match a ddl folder 
+db.type=sqlserver
+driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
+URL=jdbc:sqlserver://(servername):1433;databaseName=(databasename)
+User=
+Password=
+
+servername=(servername)
+databasename=(databasename)
+portnumber=1433
+ds-jndiname=microsoft_1433
+
+Immutable=true
+
+
+
+
+


Property changes on: trunk/test-integration/db/src/main/resources/datasources/sqlserver/example_connection.properties
___________________________________________________________________
Name: svn:mime-type
   + text/plain



More information about the teiid-commits mailing list