Main Page   Modules   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

_VDBL_standardtable Class Reference
[Classes and types for internal use]

standard table in databases, constructed from rows and columns More...

#include <vdbl_table.h>

Inheritance diagram for _VDBL_standardtable:

Inheritance graph
[legend]
Collaboration diagram for _VDBL_standardtable:

Collaboration graph
[legend]
List of all members.

Public Types

typedef std::pair< std::string,
_VDBL_col
_T_colspec
typedef std::pair< const std::string *,
const _VDBL_col * > 
_T_ptrcolspec
typedef _Base::col_const_iterator col_const_iterator
typedef _row_iterator< _VDBL_rowid,
const _VDBL_rowid &, const
_VDBL_rowid * > 
row_const_iterator

Public Methods

const std::type_info & get_colinfo (const std::string &_C_n, triple< bool, _VDBL_colid, _VDBL_colflags > &_r) const
_VDBL_colid get_col_id (const std::string &_C_n) const
 _VDBL_standardtable ()
 _VDBL_standardtable (const _VDBL_standardtable &__t)
template<template< class __Tp, class __AllocTp > class __SequenceCtr, class Allocator1>  _VDBL_standardtable (const __SequenceCtr< triple< std::string, _VDBL_col, _VDBL_colflags >, Allocator1 > &__cc)
virtual ~_VDBL_standardtable ()
std::pair< std::string, _VDBL_colid_next_col (const std::pair< std::string, _VDBL_colid > &_ci) const
_VDBL_rowid _next_row (const _VDBL_rowid &_ci) const
virtual bool add_col (const std::string &_C_n, const _VDBL_col &__c, const _VDBL_colflags &__f) VDBL_PURE_VIRTUAL virtual bool modify_col(const std
template<template< class __Tp1, class __AllocTp1 > class __SequenceCtrOut, template< class __Tp2, class __AllocTp2 > class __SequenceCtrIn, class AllocatorOut, class AllocatorIn> bool insert_row (const __SequenceCtrOut< __SequenceCtrIn< _T_colspec, AllocatorIn >, AllocatorOut > &_rows)

Protected Methods

void made_change ()
_VDBL_colid get_colid ()
_VDBL_rowid get_rowid ()

Friends

class _VDBL_view

Detailed Description

This is the class describing standard tables as they usually appear in databases, constructed from rows and columns.

Definition at line 550 of file vdbl_table.h.


Member Typedef Documentation

typedef std::pair<std::string,_VDBL_col> _VDBL_standardtable::_T_colspec
 

specifier of one column, a pair of column name (string) and entry (_VDBL_col).

Reimplemented from _VDBL_table.

Definition at line 568 of file vdbl_table.h.

typedef std::pair<const std::string*,const _VDBL_col*> _VDBL_standardtable::_T_ptrcolspec
 

specifier of pointers to one column, a pair of column name (string*) and entry (_VDBL_col*).

Reimplemented from _VDBL_table.

Definition at line 573 of file vdbl_table.h.

typedef _Base::col_const_iterator _VDBL_standardtable::col_const_iterator
 

const iterator over all columns

Reimplemented from _VDBL_table.

Definition at line 578 of file vdbl_table.h.

typedef _row_iterator<_VDBL_rowid, const _VDBL_rowid&, const _VDBL_rowid*> _VDBL_table::row_const_iterator [inherited]
 

const iterator over all rows

Definition at line 320 of file vdbl_table.h.


Constructor & Destructor Documentation

_VDBL_standardtable::_VDBL_standardtable   [inline]
 

standard constructor which optionally initializes the global ACL entry

Definition at line 628 of file vdbl_table.h.

_VDBL_standardtable::_VDBL_standardtable const _VDBL_standardtable &    __t [inline]
 

copy constructor

Definition at line 632 of file vdbl_table.h.

template<template< class __Tp, class __AllocTp > class __SequenceCtr, class Allocator1>
_VDBL_standardtable::_VDBL_standardtable const __SequenceCtr< triple< std::string, _VDBL_col, _VDBL_colflags >, Allocator1 > &    __cc [inline]
 

constructor which builds a table from a list of column definitions. This list can be contained in any sequential STL container.

Definition at line 642 of file vdbl_table.h.

virtual _VDBL_standardtable::~_VDBL_standardtable   [inline, virtual]
 

standard destructor

Definition at line 672 of file vdbl_table.h.


Member Function Documentation

std::pair<std::string,_VDBL_colid> _VDBL_standardtable::_next_col const std::pair< std::string, _VDBL_colid > &    _ci const [inline, virtual]
 

This is the fundamental class for iterators over all rows, defining basic in(de)crementation for overloading, and basic comparison.

Reimplemented from _VDBL_table.

Definition at line 996 of file vdbl_table.h.

_VDBL_rowid _VDBL_standardtable::_next_row const _VDBL_rowid   _ci const [inline, virtual]
 

standard constructor

Reimplemented from _VDBL_table.

Definition at line 1031 of file vdbl_table.h.

virtual bool _VDBL_table::add_col const std::string &    _C_n,
const _VDBL_col   __c,
const _VDBL_colflags   __f
const [inline, virtual, inherited]
 

insert a new row of specification _row into the table, and return the row id of the newly created row in _r. Take any sequential STL container to hold the row entries of the column. The function returns true, if inserting was successful.

Definition at line 376 of file vdbl_table.h.

_VDBL_colid _VDBL_standardtable::get_col_id const std::string &    _C_n const [inline]
 

return the column id of column _C_n

Definition at line 614 of file vdbl_table.h.

_VDBL_colid _VDBL_table::get_colid   [inline, protected, inherited]
 

generate new unique id's for rows and columns

Definition at line 98 of file vdbl_table.h.

const std::type_info& _VDBL_standardtable::get_colinfo const std::string &    _C_n,
triple< bool, _VDBL_colid, _VDBL_colflags > &    _r
const [inline, virtual]
 

what was the id of the last change to the table

Reimplemented from _VDBL_table.

Definition at line 591 of file vdbl_table.h.

_VDBL_rowid _VDBL_table::get_rowid   [inline, protected, inherited]
 

generate new unique id's for rows and columns

Definition at line 99 of file vdbl_table.h.

template<template< class __Tp1, class __AllocTp1 > class __SequenceCtrOut, template< class __Tp2, class __AllocTp2 > class __SequenceCtrIn, class AllocatorOut, class AllocatorIn>
bool _VDBL_table::insert_row const __SequenceCtrOut< __SequenceCtrIn< _T_colspec, AllocatorIn >, AllocatorOut > &    _rows [inline, inherited]
 

insert a many new rows of specifications _rows into the table. The list of rows can be contained in any sequential STL container, which holds any other sequential STL container of column entries. The function returns true, if inserting was successful for all rows.

Definition at line 457 of file vdbl_table.h.

void _VDBL_table::made_change   [inline, protected, inherited]
 

increment the last_change counter.

Definition at line 105 of file vdbl_table.h.


The documentation for this class was generated from the following file:
Generated on Tue Nov 4 01:29:27 2003 for Vienna Database Library by doxygen1.2.18