Remove SQL scripts generation

We don't change JDBC scripts too often and even if we do that, it's not
so hard to copy/paste the script throughout all the supported platforms
instead of rely on the pretty old VPP tool and suffer from performance
degradation during regular day-to-day development.
Plus there is some bug in the VPP when it generates a script for the
Derby, so we end up with erroneous braces in the sentence:
```
MESSAGE_SEQUENCE BIGINT NOT NULL GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1),
```
I have to remove them manually each time I switch between Gradle versions
This commit is contained in:
Artem Bilan
2018-04-27 16:53:48 -04:00
committed by Gary Russell
parent 0c1423e78a
commit f970bf0332
24 changed files with 3 additions and 286 deletions

View File

@@ -10,9 +10,9 @@
<bean id="dataSource" class="oracle.jdbc.pool.OracleDataSource" destroy-method="close">
<property name="connectionCachingEnabled" value="true" />
<property name="URL" value="jdbc:oracle:thin:@//10.0.1.6:1521/XE" />
<property name="password" value="TT2" />
<property name="user" value="tt" />
<property name="URL" value="jdbc:oracle:thin:@//[HOST]:1521/XE" />
<property name="user" value="[USER]" />
<property name="password" value="[PASSWORD]" />
<property name="connectionCacheProperties">
<props merge="default">
<prop key="MinLimit">3</prop>