Rogue Wave Views 5.6 |
Rogue Wave Views |
Rogue Wave Views Documentation Home |
Table class. More...
#include <ilviews/dataccess/tblbuf.h>
Public Member Functions | |
IliValue & | at (IlInt colno) |
Returns a value. More... | |
IliValue & | at (IliName colname) |
Returns a value. More... | |
const IliValue & | at (IlInt colno) const |
Returns a value. More... | |
const IliValue & | at (IliName colname) const |
Returns a value. More... | |
void | clear () |
Sets all values in the table buffer to the null value. More... | |
IlInt | count () const |
Returns the number of values in the table buffer. More... | |
IliTable * | getTable () const |
Returns the table from which the table buffer has been obtained. More... | |
IlBoolean | isModified () const |
Returns IlTrue if a value in the table buffer has been modified. More... | |
IlBoolean | isNull () const |
Returns IlTrue if all the values in the table buffer are null . More... | |
IliValue & | operator[] (IlInt colno) |
Returns a value. More... | |
IliValue & | operator[] (IliName colname) |
Returns a value. More... | |
const IliValue & | operator[] (IlInt volno) const |
Returns a value. More... | |
const IliValue & | operator[] (IliName colname) const |
Returns a value. More... | |
IlBoolean | rowToBuffer (IlInt rowno) |
Retrieves a row from the underlying table. More... | |
Public Member Functions inherited from IliRefCounted | |
IlInt | getRefCount () const |
Returns the reference count of the object. Initially, this property is set to 0 . More... | |
void | lock () const |
Increments the reference count of the object. | |
void | unLock () const |
Decrements the reference count of the object. More... | |
Friends | |
class | IliTable |
Additional Inherited Members | |
Protected Member Functions inherited from IliRefCounted | |
virtual | ~IliRefCounted () |
This is the virtual destructor of the IliRefCounted class. More... | |
Table class.
Library: dataccess
The IliTableBuffer
class works in conjunction with the IliTable
class. It is required by the users of a table object, to inspect, alter, or insert new rows into the table. An IliTableBuffer
object can be obtained using the IliTable::getBuffer
member function. It can then be used to retrieve rows from the table, to update, or insert new rows into the table. When it is no longer required, it should be returned to the table using the IliTable::releaseBuffer
member function.
Returns a value.
colno | The column position. |
colno
. Returns a value.
colname | The column name. |
colname
. Returns a value.
colno | The column position. |
colno
. Returns a value.
colname | The column name. |
colname
. void IliTableBuffer::clear | ( | ) |
Sets all values in the table buffer to the null
value.
In addition, the modified property of the table buffer is cleared.
IlInt IliTableBuffer::count | ( | ) | const |
Returns the number of values in the table buffer.
Each of these values corresponds to a column in the underlying table.
IliTable * IliTableBuffer::getTable | ( | ) | const |
Returns the table from which the table buffer has been obtained.
IlBoolean IliTableBuffer::isModified | ( | ) | const |
Returns IlTrue
if a value in the table buffer has been modified.
IlTrue
if a value in the table buffer has been modified since the last time either of the clear
or rowToBuffer
member functions was called. IlBoolean IliTableBuffer::isNull | ( | ) | const |
Returns IlTrue
if all the values in the table buffer are null
.
IlTrue
if all the values in the table buffer are null
. Returns a value.
colno | The column position. |
colno
. Returns a value.
colname | The column name. |
colname
. Returns a value.
colno | The column position. |
colno
. Returns a value.
colname | The column name. |
colname
. Retrieves a row from the underlying table.
After this member function has been called, each value in the table buffer is the same as its corresponding value in the designated row. In addition, the modified property of the table buffer is cleared.
rowno | The row position. |
IlTrue
if successful. © Copyright 2012, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.