Query tab will now show multiple data tabs if it get's multiple results

with tuples.
This commit is contained in:
Eelke Klein 2017-01-25 06:54:21 +01:00
parent 424cbc9e2e
commit b6d986051b
21 changed files with 349 additions and 113 deletions

22
databaseinspectorwidget.h Normal file
View file

@ -0,0 +1,22 @@
#ifndef DATABASEINSPECTORWIDGET_H
#define DATABASEINSPECTORWIDGET_H
#include <QWidget>
namespace Ui {
class DatabaseInspectorWidget;
}
class DatabaseInspectorWidget : public QWidget
{
Q_OBJECT
public:
explicit DatabaseInspectorWidget(QWidget *parent = 0);
~DatabaseInspectorWidget();
private:
Ui::DatabaseInspectorWidget *ui;
};
#endif // DATABASEINSPECTORWIDGET_H