QGIS/python/core/auto_generated/qgsdbquerylog.sip.in
Nyall Dawson 3f6b490218 Sipify
2025-04-02 11:11:10 +10:00

128 lines
2.9 KiB
Plaintext

/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsdbquerylog.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsDatabaseQueryLogEntry
{
%Docstring(signature="appended")
Encapsulates a logged database query.
.. versionadded:: 3.24
%End
%TypeHeaderCode
#include "qgsdbquerylog.h"
%End
public:
QgsDatabaseQueryLogEntry( const QString &query = QString() );
%Docstring
Constructor for QgsDatabaseQueryLogEntry.
%End
int queryId;
QString uri;
QString provider;
QString query;
quint64 startedTime;
quint64 finishedTime;
QString initiatorClass;
QString origin;
long long fetchedRows;
QString error;
bool canceled;
};
class QgsDatabaseQueryLog: QObject
{
%Docstring(signature="appended")
Handles logging of database queries.
:py:class:`QgsDatabaseQueryLog` is not usually directly created, but
rather accessed through :py:func:`QgsApplication.databaseQueryLog()`.
Generally, clients should only access the static :py:func:`~log` method
to register their queries.
Example
-------------------------------------
.. code-block:: python
# Log a database query
QgsDatabaseQueryLog.log('SELECT * FROM my_table')
.. versionadded:: 3.24
%End
%TypeHeaderCode
#include "qgsdbquerylog.h"
%End
public:
QgsDatabaseQueryLog( QObject *parent = 0 );
%Docstring
Creates a new query log.
QgsDatabaseQueryLog is not usually directly created, but rather accessed
through :py:func:`QgsApplication.databaseQueryLog()`.
%End
static bool enabled();
%Docstring
Returns ``True`` if logging is enabled.
.. seealso:: :py:func:`setEnabled`
%End
static void log( const QgsDatabaseQueryLogEntry &query );
%Docstring
Logs a database ``query`` as starting.
This method can be safely called from any thread.
%End
static void finished( const QgsDatabaseQueryLogEntry &query );
%Docstring
Records that the database ``query`` has finished.
This method can be safely called from any thread.
%End
public slots:
signals:
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsdbquerylog.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/