Skip to content

Commit c20c07d

Browse files
committed
Change case on function name
1 parent a9017b1 commit c20c07d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/dpi/src/dpiStmtImpl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ void StmtImpl::execute (int numIterations, bool isAutoCommit)
271271
errh_ );
272272

273273
#if OCI_MAJOR_VERSION < 12
274-
if ( IsDML () && !conn_->hasTxn () )
274+
if ( isDML () && !conn_->hasTxn () )
275275
{
276276
/* Not to be reset, till thread safety is ensured in NJS */
277277
conn_->hasTxn (true );

src/dpi/src/dpiStmtImpl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class StmtImpl : public Stmt
7979
virtual OCIError * getError () { return errh_; }
8080

8181
// Is the SQL statement DML or not ?
82-
virtual inline bool IsDML ()
82+
virtual inline bool isDML ()
8383
{
8484
return ( ( stmtType_ == DpiStmtInsert ) ||
8585
( stmtType_ == DpiStmtUpdate ) ||

0 commit comments

Comments
 (0)