diff --git a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.axion b/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.axion deleted file mode 100644 index 1338dac76e..0000000000 --- a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.axion +++ /dev/null @@ -1,23 +0,0 @@ - -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -# Properties starting with "datasource." will be fed into the datasource instance of the -# class configured via the datasource.class property -datasource.class=org.apache.commons.dbcp.BasicDataSource -datasource.driverClassName=org.axiondb.jdbc.AxionDriver -datasource.url=jdbc:axiondb:testdb diff --git a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.derby b/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.derby deleted file mode 100644 index fda8d9b2cc..0000000000 --- a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.derby +++ /dev/null @@ -1,43 +0,0 @@ -# JDBC properties for Derby >= 10.1.1.0 - -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -# Use this property if ddlutils does not recognize the platform from the settings -#ddlutils.platform=Derby - -# Properties starting with "datasource." will be fed into the datasource instance of the -# class configured via the datasource.class property - -datasource.class=org.apache.commons.dbcp.BasicDataSource - -# Embedded mode - -#datasource.driverClassName=org.apache.derby.jdbc.EmbeddedDriver -#datasource.url=jdbc:derby:target/database/ddlutils_derby - -# The default username for embedded Derby is app; for every other user the must be a corresponding -# schema defined in the database; see http://db.apache.org/derby/faq.html#schema_exist for details -#datasource.username=app -#datasource.password= - -# Client/server mode - -datasource.driverClassName=org.apache.derby.jdbc.ClientDriver -datasource.url=jdbc:derby://localhost/ddlutils -datasource.username=ddlutils -datasource.password=ddlutils diff --git a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.firebird b/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.firebird deleted file mode 100644 index 96342a245f..0000000000 --- a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.firebird +++ /dev/null @@ -1,46 +0,0 @@ -# JDBC properties for FireBird - -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -# Note: Properties starting with "datasource." will be fed into the datasource instance of the -# class configured via the datasource.class property - -# Use this property if ddlutils does not recognize the platform from the settings -#ddlutils.platform=Firebird - -# -# Using the plain DBCP datasource -# - -datasource.class=org.apache.commons.dbcp.BasicDataSource -datasource.driverClassName=org.firebirdsql.jdbc.FBDriver -datasource.url=jdbc:firebirdsql://10.21.21.33:3050/c:/data/firebird/DDLUTILS -datasource.username=SYSDBA -datasource.password=masterkey -# For some schema updates, firebird allows only 1 connection to the database, else it will fail -# the update.. -# See http://www.firebirdsql.org/index.php?op=faq#q0003.dat for more information -datasource.maxConnections=1 -datasource.maxActive=1 -datasource.maxIdle=0 -datasource.testOnBorrow=true -datasource.testOnReturn=true -datasource.testWhileIdle=true - - - diff --git a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.hsqldb b/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.hsqldb deleted file mode 100644 index 5d5c6711c0..0000000000 --- a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.hsqldb +++ /dev/null @@ -1,38 +0,0 @@ -# JDBC properties for HsqlDb - -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -# Use this property if ddlutils does not recognize the platform from the settings -ddlutils.platform=HsqlDb - -# Properties starting with "datasource." will be fed into the datasource instance of the -# class configured via the datasource.class property -datasource.class=org.apache.commons.dbcp.BasicDataSource -datasource.driverClassName=org.hsqldb.jdbcDriver - -# Embedded mode - -#datasource.url=jdbc:hsqldb:file:target/database/ddlutils_hsqldb -#datasource.username=sa -#datasource.password= - -# Server mode - -datasource.url=jdbc:hsqldb:hsql://localhost/xdb -datasource.username=sa -datasource.password= diff --git a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.mckoi b/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.mckoi deleted file mode 100644 index c3edcee53b..0000000000 --- a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.mckoi +++ /dev/null @@ -1,37 +0,0 @@ -# JDBC properties for Mckoi 1.0.3 - -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -# Use this property if ddlutils does not recognize the platform from the settings -#ddlutils.platform=Mckoi - -# Properties starting with "datasource." will be fed into the datasource instance of the -# class configured via the datasource.class property - -datasource.class=org.apache.commons.dbcp.BasicDataSource -datasource.driverClassName=com.mckoi.JDBCDriver -datasource.username=ddlutils -datasource.password=ddlutils - -# Embedded mode - -#datasource.url=jdbc:mckoi:local://./target/database/ddlutils_mckoi - -# Client/server mode - -datasource.url=jdbc:mckoi://localhost diff --git a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.mysql41 b/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.mysql41 deleted file mode 100644 index 0c54ec8f16..0000000000 --- a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.mysql41 +++ /dev/null @@ -1,35 +0,0 @@ -# JDBC properties for Mysql - -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -# Note: Properties starting with "datasource." will be fed into the datasource instance of the -# class configured via the datasource.class property - -# Use this property if ddlutils does not recognize the platform from the settings -#ddlutils.platform=MySQL - -# -# Using the plain DBCP datasource -# - -datasource.class=org.apache.commons.dbcp.BasicDataSource -datasource.driverClassName=com.mysql.jdbc.Driver -datasource.url=jdbc:mysql://10.21.21.33:3306/ddlutils -datasource.username=root -datasource.password=ddlutils -datasource.maxConnections=200 diff --git a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.mysql50 b/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.mysql50 deleted file mode 100644 index 90556a6101..0000000000 --- a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.mysql50 +++ /dev/null @@ -1,34 +0,0 @@ -# JDBC properties for Mysql - -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -# Note: Properties starting with "datasource." will be fed into the datasource instance of the -# class configured via the datasource.class property - -# Use this property if ddlutils does not recognize the platform from the settings -ddlutils.platform=MySQL50 - -# -# Using the plain DBCP datasource -# - -datasource.class=org.apache.commons.dbcp.BasicDataSource -datasource.driverClassName=com.mysql.jdbc.Driver -datasource.url=jdbc:mysql://10.21.21.33:3307/ddlutils -datasource.username=root -datasource.password=ddlutils diff --git a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.postgresql b/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.postgresql deleted file mode 100644 index d55ed461fe..0000000000 --- a/symmetric/symmetric-db/src/test-profiles/mvdb/jdbc.properties.postgresql +++ /dev/null @@ -1,52 +0,0 @@ -# JDBC properties for PostgreSQL - -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -# Note: Properties starting with "datasource." will be fed into the datasource instance of the -# class configured via the datasource.class property - -# Use this property if ddlutils does not recognize the platform from the settings -#ddlutils.platform=PostgreSQL - -# -# Using the plain DBCP datasource -# - -datasource.class=org.apache.commons.dbcp.BasicDataSource -datasource.driverClassName=org.postgresql.Driver -datasource.url=jdbc:postgresql://localhost/ddlutils -datasource.username=postgres -datasource.password=root123 - -# -# PostgreSQL comes with its own DataSource implementations which can be configured like this: -# - -#datasource.class=org.postgresql.ds.PGSimpleDataSource -# or this one for pooling: -#datasource.class=org.postgresql.ds.PGPoolingDataSource - -#datasource.serverName=localhost -#datasource.databaseName=ddlutils -#datasource.user= -#datasource.password= - -# additional properties for the pooling datasource: -#datasource.dataSourceName=pooling datasource -#datasource.initialConnections=5 -#datasource.maxConnections=20 \ No newline at end of file