You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
you can use this option if server and client on same linux machine by specify the following url option
193
193
```golang
194
194
urlOptions:=map[string]string{
195
195
// change the value according to your machine
196
196
"unix socket": "/usr/tmp/.oracle/sEXTPROC1",
197
197
}
198
198
```
199
-
*### Using Timeout
200
-
* activate global timeout value (default=10 minute and should be updated according to your network speed) to protect against block read/write if no or failed timeout context
201
-
* timeout value should be numeric string which represent number of seconds that should pass before operation finish or canceled by the driver
199
+
*### Timeout
200
+
* activate socket timeout value (default=0 no timeout)
201
+
* timeout value should be numeric string which represent number of seconds the driver will wait on socket for read/write.
202
202
* to disable this option pass 0 value start from v2.7.15
203
203
```golang
204
204
urlOptions:=map[string]string {
205
205
"TIMEOUT": "60",
206
206
}
207
207
```
208
-
*### Using Proxy user
208
+
*### Connect Timeout
209
+
* define timeout for connection (default = 1 minute)
210
+
* timeout value should be numeric string which represent number of seconds.
211
+
* to disable this option pass 0 value start from v2.9.0
0 commit comments