Eneboo - Documentación para desarrolladores
|
#include <FLSqlSavePoint.h>
Slots públicos | |
void | cursorDestroyed () |
Métodos públicos | |
opInfo () | |
opInfo (const QString &pK, const int o, const QSqlRecord &b, const int a, const QSqlIndex &s, const QString &f, const QString &n, FLSqlCursor *c) | |
~opInfo () | |
Atributos públicos | |
QString | primaryKey |
int | op |
QSqlRecord | buffer |
int | at |
QSqlIndex | sort |
QString | filter |
QString | name |
the name of this object | |
FLSqlCursor * | cursor |
Informacin sobre una operacin.
La informacin de una operacin es; la clave primaria, operacion realizada (0 = insertar, 1 = editar, 2 = borrar), buffer con el contenido del registro afectado por la operacin, posicin del registro actual del cursor, orden del cursor, filtro del cursor, nombre del cursor (de la tabla), cursor asociado.
opInfo::opInfo | ( | ) | [inline] |
opInfo::opInfo | ( | const QString & | pK, |
const int | o, | ||
const QSqlRecord & | b, | ||
const int | a, | ||
const QSqlIndex & | s, | ||
const QString & | f, | ||
const QString & | n, | ||
FLSqlCursor * | c | ||
) | [inline] |
opInfo::~opInfo | ( | ) | [inline] |
void opInfo::cursorDestroyed | ( | ) | [inline, slot] |
the name of this object
You can find an object by name (and type) using child(). You can find a set of objects with queryList().
The object name is set by the constructor or by the setName() function. The object name is not very useful in the current version of Qt, but will become increasingly important in the future.
If the object does not have a name, the name() function returns "unnamed", so printf() (used in qDebug()) will not be asked to output a null pointer. If you want a null pointer to be returned for unnamed objects, you can call name( 0 ).
Reimplementado de QObject.