How many usage of OCIThreadInit() in multiple OCI Environment ?
OCI doc says:
---
The first time
OCIThreadInit()
is called, it initializes the OCI Thread context. It also saves a pointer to the context in some system dependent manner. Subsequent calls to
OCIThreadInit()
will return the same context.
---
If I have multiple thread that each has its own OCI Environment Handle, do I have to call OCIThreadInit() for each OCI Environment Handle ? Or, is calling it once enough ?
thanks in advance...