Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
oracle provider: fix saving of styles
(cherry picked from commit 0e75626)
  • Loading branch information
jef-n committed Dec 15, 2020
1 parent e280cbd commit a7986c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/oracle/qgsoracleprovider.cpp
Expand Up @@ -3472,7 +3472,7 @@ bool QgsOracleProviderMetadata::saveStyle( const QString &uri,
qry.addBindValue( dsUri.table() ),
qry.addBindValue( dsUri.geometryColumn() ),
qry.addBindValue( styleName.isEmpty() ? dsUri.table() : styleName ),
qry.exec( sql )
qry.exec()
) )
{
errCause = QObject::tr( "Unable to check style existence [%1]" ).arg( qry.lastError().text() );
Expand Down

0 comments on commit a7986c6

Please sign in to comment.