File tree 3 files changed +7
-3
lines changed
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 @@ -967,7 +967,7 @@ informix_14_10() {
967
967
echo " Waiting for Informix to start..."
968
968
sleep 30
969
969
done
970
- if [ " $n " -ge 5 ]; then
970
+ if [ " $n " -ge 10 ]; then
971
971
echo " Informix failed to start and configure after 5 minutes"
972
972
else
973
973
echo " Informix successfully started"
@@ -991,7 +991,7 @@ informix_12_10() {
991
991
echo " Waiting for Informix to start..."
992
992
sleep 30
993
993
done
994
- if [ " $n " -ge 5 ]; then
994
+ if [ " $n " -ge 10 ]; then
995
995
echo " Informix failed to start and configure after 5 minutes"
996
996
else
997
997
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