2018-12-17 21:51:14 +01:00
|
|
|
|
#include "PgLanguage.h"
|
|
|
|
|
|
|
|
|
|
|
|
QString PgLanguage::createSql() const
|
|
|
|
|
|
{
|
|
|
|
|
|
throw std::exception("PgLanguage::createSql() not implemented");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString PgLanguage::dropSql() const
|
|
|
|
|
|
{
|
|
|
|
|
|
throw std::exception("PgLanguage::dropSql() not implemented");
|
|
|
|
|
|
}
|
2018-12-24 11:31:56 +01:00
|
|
|
|
|
|
|
|
|
|
QString PgLanguage::typeName() const
|
|
|
|
|
|
{
|
|
|
|
|
|
return "LANGUAGE";
|
|
|
|
|
|
}
|