kexi
record.h
00001 /* This file is part of the KDE project 00002 Copyright (C) 2003 Jaroslaw Staniek <js@iidea.pl> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to 00016 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 * Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #ifndef KEXIDB_RECORD_H 00021 #define KEXIDB_RECORD_H 00022 00023 #include <qvaluelist.h> 00024 #include <qstring.h> 00025 00026 #include <kexidb/field.h> 00027 00028 namespace KexiDB { 00029 00033 class KEXI_DB_EXPORT Record { 00034 public: 00035 Record(const QString & name); 00036 00037 //TODO............. 00038 Table(); 00039 ~Table(); 00040 const QString& name() const; 00041 void setName(const QString& name); 00042 unsigned int fieldCount() const; 00043 KexiDB::Field field(unsigned int id) const; 00044 QStringList primaryKeys() const; 00045 bool hasPrimaryKeys() const; 00046 //js void addField(KexiDB::Field field); 00047 //js void addPrimaryKey(const QString& key); 00048 private: 00049 //js QStringList m_primaryKeys; 00050 QValueList<Field> m_fields; 00051 QString m_name; 00052 Connection* m_conn; 00053 }; 00054 00055 00056 /* 00057 class KexiDBTableFields: public QValueList<KexiDBField> { 00058 public: 00059 KexiDBTable(const QString & name); 00060 ~KexiDBTable(); 00061 void addField(KexiDBField); 00062 // const QString& tableName() const; 00063 00064 private: 00065 // QString m_tableName; 00066 }; 00067 */ 00068 00069 } //namespace KexiDB 00070 00071 #endif