pg_trigger
This commit is contained in:
parent
ae86fef2b4
commit
7c7e72ae14
5 changed files with 90 additions and 2 deletions
25
pglablib/PgTriggerContainer.h
Normal file
25
pglablib/PgTriggerContainer.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#ifndef PGTRIGGERCONTAINER_H
|
||||
#define PGTRIGGERCONTAINER_H
|
||||
|
||||
#include "PgContainer.h"
|
||||
#include "PgTrigger.h"
|
||||
|
||||
namespace Pgsql {
|
||||
|
||||
class Result;
|
||||
|
||||
}
|
||||
|
||||
|
||||
class PgTriggerContainer: public PgContainer<PgTrigger> {
|
||||
public:
|
||||
using PgContainer<PgTrigger>::PgContainer;
|
||||
|
||||
virtual std::string getLoadQuery() const override;
|
||||
protected:
|
||||
PgTrigger loadElem(const Pgsql::Row &row) override;
|
||||
private:
|
||||
};
|
||||
|
||||
|
||||
#endif // PGTRIGGERCONTAINER_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue