Informix run fix
This commit is contained in:
parent
3a58018cc0
commit
0061e8922d
|
@ -206,6 +206,10 @@ The following table illustrates a list of commands for various databases that ca
|
|||
|TiDB
|
||||
|`./docker_db.sh tidb`
|
||||
|`./gradlew test -Pdb=tidb`
|
||||
|
||||
|Informix
|
||||
|`./docker_db.sh informix`
|
||||
|`./gradlew test -Pdb=informix`
|
||||
|===
|
||||
|
||||
To stop a container started by `docker`, use the command
|
||||
|
|
|
@ -963,7 +963,7 @@ informix_14_10() {
|
|||
echo "Waiting for Informix to start..."
|
||||
sleep 30
|
||||
done
|
||||
if [ "$n" -ge 5 ]; then
|
||||
if [ "$n" -ge 10 ]; then
|
||||
echo "Informix failed to start and configure after 5 minutes"
|
||||
else
|
||||
echo "Informix successfully started"
|
||||
|
@ -987,7 +987,7 @@ informix_12_10() {
|
|||
echo "Waiting for Informix to start..."
|
||||
sleep 30
|
||||
done
|
||||
if [ "$n" -ge 5 ]; then
|
||||
if [ "$n" -ge 10 ]; then
|
||||
echo "Informix failed to start and configure after 5 minutes"
|
||||
else
|
||||
echo "Informix successfully started"
|
||||
|
|
|
@ -295,7 +295,7 @@ ext {
|
|||
'jdbc.driver': 'com.informix.jdbc.IfxDriver',
|
||||
'jdbc.user' : 'informix',
|
||||
'jdbc.pass' : 'in4mix',
|
||||
'jdbc.url' : 'jdbc:informix-sqli://' + dbHost + ':9088/sysuser:INFORMIXSERVER=dev;user=informix;password=in4mix',
|
||||
'jdbc.url' : 'jdbc:informix-sqli://' + dbHost + ':9088/sysuser:INFORMIXSERVER=informix;user=informix;password=in4mix;DELIMIDENT=Y',
|
||||
'jdbc.datasource' : 'com.informix.jdbc.IfxDriver',
|
||||
// 'jdbc.datasource' : 'com.informix.jdbcx.IfxDataSource',
|
||||
'connection.init_sql' : ''
|
||||
|
|
Loading…
Reference in New Issue