Skip to content

Commit c3df3ba

Browse files
committedMay 2, 2013
oracle provider: fix pk where clause
1 parent def681c commit c3df3ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/oracle/qgsoracleprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ QString QgsOracleProvider::pkParamWhereClause() const
337337
int idx = mPrimaryKeyAttrs[i];
338338
const QgsField &fld = field( idx );
339339

340-
whereClause += delim + QString( "%3%1=?" ).arg( mConnection->fieldExpression( fld ) );
340+
whereClause += delim + QString( "%1=?" ).arg( mConnection->fieldExpression( fld ) );
341341
delim = " AND ";
342342
}
343343
}

0 commit comments

Comments
 (0)
Please sign in to comment.