PgAttribute loading + ColummnTableModel
Required enchancement to PgContainer to make multifield key work.
This commit is contained in:
parent
f9caadb59e
commit
e9d72d391d
32 changed files with 698 additions and 99 deletions
24
pglab/PgNamespaceContainer.h
Normal file
24
pglab/PgNamespaceContainer.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#ifndef PGNAMESPACECONTAINER_H
|
||||
#define PGNAMESPACECONTAINER_H
|
||||
|
||||
#include "PgNamespace.h"
|
||||
#include "PgContainer.h"
|
||||
|
||||
namespace Pgsql {
|
||||
|
||||
class Result;
|
||||
|
||||
}
|
||||
|
||||
class PgNamespaceContainer: public PgContainer<PgNamespace> {
|
||||
public:
|
||||
using PgContainer<PgNamespace>::PgContainer;
|
||||
|
||||
virtual std::string getLoadQuery() const override;
|
||||
virtual void load(const Pgsql::Result &res) override;
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
|
||||
#endif // PGNAMESPACECONTAINER_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue