File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -206,6 +206,10 @@ The following table illustrates a list of commands for various databases that ca
206
206
|TiDB
207
207
|`./docker_db.sh tidb`
208
208
|`./gradlew test -Pdb=tidb`
209
+
210
+ |Informix
211
+ |`./docker_db.sh informix`
212
+ |`./gradlew test -Pdb=informix`
209
213
|===
210
214
211
215
To stop a container started by `docker`, use the command
Original file line number Diff line number Diff line change @@ -963,7 +963,7 @@ informix_14_10() {
963
963
echo " Waiting for Informix to start..."
964
964
sleep 30
965
965
done
966
- if [ " $n " -ge 5 ]; then
966
+ if [ " $n " -ge 10 ]; then
967
967
echo " Informix failed to start and configure after 5 minutes"
968
968
else
969
969
echo " Informix successfully started"
@@ -987,7 +987,7 @@ informix_12_10() {
987
987
echo " Waiting for Informix to start..."
988
988
sleep 30
989
989
done
990
- if [ " $n " -ge 5 ]; then
990
+ if [ " $n " -ge 10 ]; then
991
991
echo " Informix failed to start and configure after 5 minutes"
992
992
else
993
993
echo " Informix successfully started"
Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ ext {
295
295
' jdbc.driver' : ' com.informix.jdbc.IfxDriver' ,
296
296
' jdbc.user' : ' informix' ,
297
297
' jdbc.pass' : ' in4mix' ,
298
- ' jdbc.url' : ' jdbc:informix-sqli://' + dbHost + ' :9088/sysuser:INFORMIXSERVER=dev ;user=informix;password=in4mix' ,
298
+ ' jdbc.url' : ' jdbc:informix-sqli://' + dbHost + ' :9088/sysuser:INFORMIXSERVER=informix ;user=informix;password=in4mix;DELIMIDENT=Y ' ,
299
299
' jdbc.datasource' : ' com.informix.jdbc.IfxDriver' ,
300
300
// 'jdbc.datasource' : 'com.informix.jdbcx.IfxDataSource',
301
301
' connection.init_sql' : ' '
You can’t perform that action at this time.
0 commit comments