class Record

A collection of fields with relevant values. More...

Full nameKDB::Record
Definition#include <record.h>
InheritsKDB::DataObject [public ]
List of all Methods
Annotated List
Files
Globals
Hierarchy
Index

Public Methods

Signals


Detailed Description

A collection of fields with relevant values.

The fields should be accessed like an associative array:


 	rec["field1"] = "value";
 or
 	rec[1] = "value";

there are two record types: updatable and read only, depending on the parent recordset

 Record (Recordset *r, FieldList fields, Row values, KDB_ULONG pos)

 Record (const Record &)

Record &  operator = (const Record &)

 ~Record ()

FieldIterator  begin ()

Field &  operator[] (const QString& name)

Field &  operator[] (int index)

Field &  field (const QString & name)

Field &  field (int index)

KDB_ULONG  absolutePosition ()

void  update ()

void  remove ()

void  updated (KDB::Record *, bool)

[signal]

void  deleted (KDB::Record *)

[signal]