Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsogrtransaction.h - Transaction support for OGR layers 3 : : ------------------- 4 : : begin : June 13, 2018 5 : : copyright : (C) 2018 by Even Rouault 6 : : email : even.rouault @ spatialys.com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #ifndef QGSOGRTRANSACTION_H 19 : : #define QGSOGRTRANSACTION_H 20 : : 21 : : #include "qgstransaction.h" 22 : : #include "qgsogrprovider.h" 23 : : #include "qgis_sip.h" 24 : : 25 : : ///@cond PRIVATE 26 : : #define SIP_NO_FILE 27 : : 28 : : class QgsOgrTransaction : public QgsTransaction 29 : : { 30 : : Q_OBJECT 31 : : 32 : : public: 33 : : explicit QgsOgrTransaction( const QString &connString, QgsOgrDatasetSharedPtr ds ); 34 : : 35 : : /** 36 : : * Executes the SQL query in database. 37 : : * 38 : : * \param sql The SQL query to execute 39 : : * \param error The error or an empty string if none 40 : : * \param isDirty TRUE to add an undo/redo command in the edition buffer, FALSE otherwise 41 : : * \param name Name of the operation ( only used if `isDirty` is TRUE) 42 : : */ 43 : : bool executeSql( const QString &sql, QString &error, bool isDirty = false, const QString &name = QString() ) override; 44 : : 45 : 0 : QgsOgrDatasetSharedPtr sharedDS() const { return mSharedDS; } 46 : : 47 : : private: 48 : : 49 : : QgsOgrDatasetSharedPtr mSharedDS = nullptr; 50 : : 51 : : bool beginTransaction( QString &error, int statementTimeout ) override; 52 : : bool commitTransaction( QString &error ) override; 53 : : bool rollbackTransaction( QString &error ) override; 54 : : 55 : : }; 56 : : 57 : : ///@endcond 58 : : #endif // QGSOGRTRANSACTION_H