@@ -97,7 +97,7 @@ EnvImpl::EnvImpl()
97
97
98
98
try : envh_(NULL ), poolMax_(kPoolMax ), poolMin_(kPoolMin ),
99
99
poolIncrement_(kPoolIncrement ), poolTimeout_(kPoolTimeout ),
100
- isExternalAuth_ (false ), stmtCacheSize_(kStmtCacheSize )
100
+ externalAuth_ (false ), stmtCacheSize_(kStmtCacheSize )
101
101
{
102
102
103
103
sword rc = OCIEnvCreate (&envh_, OCI_THREADED | OCI_OBJECT, NULL , NULL ,
@@ -364,7 +364,7 @@ unsigned int EnvImpl::poolTimeout() const
364
364
Specify external authentication.
365
365
366
366
PARAMETERS:
367
- isExternalAuth - true if using external authentication
367
+ externalAuth - true if using external authentication
368
368
false if not useing external authentication
369
369
370
370
RETURNS:
@@ -374,9 +374,9 @@ unsigned int EnvImpl::poolTimeout() const
374
374
375
375
*/
376
376
377
- void EnvImpl::isExternalAuth (bool isExternalAuth )
377
+ void EnvImpl::externalAuth (bool externalAuth )
378
378
{
379
- isExternalAuth_ = isExternalAuth ;
379
+ externalAuth_ = externalAuth ;
380
380
}
381
381
382
382
@@ -397,9 +397,9 @@ void EnvImpl::isExternalAuth(bool isExternalAuth)
397
397
398
398
*/
399
399
400
- bool EnvImpl::isExternalAuth () const
400
+ bool EnvImpl::externalAuth () const
401
401
{
402
- return isExternalAuth_ ;
402
+ return externalAuth_ ;
403
403
}
404
404
405
405
@@ -470,7 +470,7 @@ SPool * EnvImpl::createPool(const string &user, const string &password,
470
470
const string &connString,
471
471
int poolMax, int poolMin, int poolIncrement,
472
472
int poolTimeout, int stmtCacheSize,
473
- bool isExternalAuth )
473
+ bool externalAuth )
474
474
{
475
475
return new PoolImpl (this , envh_, user, password, connString,
476
476
(poolMax == -1 ) ? poolMax_ : poolMax,
@@ -479,7 +479,7 @@ SPool * EnvImpl::createPool(const string &user, const string &password,
479
479
poolIncrement,
480
480
(poolTimeout == -1 ) ? poolTimeout_ :
481
481
poolTimeout,
482
- isExternalAuth ,
482
+ externalAuth ,
483
483
(stmtCacheSize == -1 ) ? stmtCacheSize_ :
484
484
stmtCacheSize);
485
485
}
@@ -504,9 +504,9 @@ SPool * EnvImpl::createPool(const string &user, const string &password,
504
504
Conn * EnvImpl::getConnection (const string &user, const string &password,
505
505
const string &connString,
506
506
int stmtCacheSize, const string &connClass,
507
- bool isExternalAuth )
507
+ bool externalAuth )
508
508
{
509
- return (Conn *)new ConnImpl (this , envh_, isExternalAuth ,
509
+ return (Conn *)new ConnImpl (this , envh_, externalAuth ,
510
510
(stmtCacheSize == -1 ) ? stmtCacheSize_ :
511
511
stmtCacheSize,
512
512
user, password,
0 commit comments