Projekt

Allgemein

Profil

Herunterladen als
Herunterladen (1,34 KB) Statistiken
| Zweig: | Revision:
4d58ef6a Christian Ehringfeld
#include "tableschema.h"
b0b8dac3 Christian Ehringfeld
using namespace CuteEntityManager;
4d58ef6a Christian Ehringfeld
426974c6 Christian Ehringfeld
TableSchema::TableSchema() {
4d58ef6a Christian Ehringfeld
}

426974c6 Christian Ehringfeld
TableSchema::~TableSchema() {
4d58ef6a Christian Ehringfeld
}

426974c6 Christian Ehringfeld
const ColumnSchema TableSchema::getColumn(QString name) const {

}

const QList<QString> TableSchema::getColumnNames() {

}
QString TableSchema::getSchemaName() const {
return schemaName;
}

void TableSchema::setSchemaName(const QString &value) {
schemaName = value;
}
QString TableSchema::getName() const {
return name;
}

void TableSchema::setName(const QString &value) {
name = value;
}
QString TableSchema::getFullName() const {
return fullName;
}

void TableSchema::setFullName(const QString &value) {
fullName = value;
}
QList<QString> TableSchema::getPrimaryKeys() const {
return primaryKeys;
}

void TableSchema::setPrimaryKeys(const QList<QString> &value) {
primaryKeys = value;
}
QString TableSchema::getSequenceName() const {
return sequenceName;
}

void TableSchema::setSequenceName(const QString &value) {
sequenceName = value;
}
QHash<QString, QString> TableSchema::getForeignKeys() const {
return foreignKeys;
}

void TableSchema::setForeignKeys(const QHash<QString, QString> &value) {
foreignKeys = value;
}
QList<ColumnSchema> TableSchema::getColumns() const {
return columns;
}

void TableSchema::setColumns(const QList<ColumnSchema> &value) {
columns = value;
}