|
bool | blockSignals (bool block) |
|
QObject * | child (const char *objName, const char *inheritsClass, bool recursiveSearch) const |
|
const QObjectList & | children () const |
|
const char * | className () const |
|
bool | connect (const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type) const |
|
void | deleteLater () |
|
void | destroyed (QObject *obj) |
|
bool | disconnect (const char *signal, const QObject *receiver, const char *method) |
|
bool | disconnect (const QObject *receiver, const char *method) |
|
void | dumpObjectInfo () |
|
void | dumpObjectTree () |
|
QList< QByteArray > | dynamicPropertyNames () const |
|
virtual bool | event (QEvent *e) |
|
virtual bool | eventFilter (QObject *watched, QEvent *event) |
|
T | findChild (const QString &name) const |
|
QList< T > | findChildren (const QString &name) const |
|
QList< T > | findChildren (const QRegExp ®Exp) const |
|
bool | inherits (const char *className) const |
|
void | insertChild (QObject *object) |
|
void | installEventFilter (QObject *filterObj) |
|
bool | isA (const char *className) const |
|
bool | isWidgetType () const |
|
void | killTimer (int id) |
|
virtual const QMetaObject * | metaObject () const |
|
void | moveToThread (QThread *targetThread) |
|
const char * | name () const |
|
const char * | name (const char *defaultName) const |
|
QString | objectName () const |
|
QObject * | parent () const |
|
QVariant | property (const char *name) const |
|
void | removeChild (QObject *object) |
|
void | removeEventFilter (QObject *obj) |
|
void | setName (const char *name) |
|
void | setObjectName (const QString &name) |
|
void | setParent (QObject *parent) |
|
bool | setProperty (const char *name, const QVariant &value) |
|
bool | signalsBlocked () const |
|
int | startTimer (int interval) |
|
QThread * | thread () const |
|
|
bool | connect (const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type) |
|
bool | connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type) |
|
bool | disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *method) |
|
bool | disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method) |
|
static bool | exportHTML (const int qryheadid, ParameterList ¶ms, QString &filename, QString &errmsg) |
|
static bool | exportXML (const int qryheadid, ParameterList ¶ms, QString &filename, QString &errmsg, const int xsltmapid=-1) |
| Export the results of a query set to an XML file. More...
|
|
static QString | generateDelimited (const int qryheadid, ParameterList ¶ms, QString &errmsg) |
|
static QString | generateDelimited (QString qtext, ParameterList ¶ms, QString &errmsg) |
|
static QString | generateHTML (const int qryheadid, ParameterList ¶ms, QString &errmsg) |
|
static QString | generateHTML (QString qtext, ParameterList ¶ms, QString &errmsg) |
|
static QString | generateXML (const int qryheadid, ParameterList ¶ms, QString &errmsg, int xsltmapid=-1) |
|
static QString | generateXML (QString qtext, QString tableElemName, ParameterList ¶ms, QString &errmsg, int xsltmapid=-1) |
|
QString | tr (const char *sourceText, const char *disambiguation, int n) |
|
QString | trUtf8 (const char *sourceText, const char *disambiguation, int n) |
|
static bool | XSLTConvertFile (QString inputfilename, QString outputfilename, QString xsltfilename, QString &errmsg) |
|
static bool | XSLTConvertFile (QString inputfilename, QString outputfilename, int xsltmapid, QString &errmsg) |
|
static QString | XSLTConvertString (QString input, int xsltmapid, QString &errmsg) |
|
bool ExportHelper::exportXML |
( |
const int |
qryheadid, |
|
|
ParameterList & |
params, |
|
|
QString & |
filename, |
|
|
QString & |
errmsg, |
|
|
const int |
xsltmapid = -1 |
|
) |
| |
|
static |
Export the results of a query set to an XML file.
Run all of the queries in the given Query Set in the given order and write the results to an XML file. The XML file is constructed very simply:
<tablename>
<column1name>columnvalue</column1name>
<column2name>columnvalue</column2name>
...
</tablename>
If the caller passes in an XSLT map id, the simple XML will be processed using the export XSLT.
- Parameters
-
| qryheadid | The internal ID of the query set (qryhead record) to run. |
| params | A list of parameters and values to use when building SQL statements from MetaSQL statements. |
[in,out] | filename | The name of the file to create. If passed in empty, a file named after the query set will be created in the current directory (context-dependent) and this filename will be passed back out. |
[out] | errmsg | An message describing why the processing failed if there was a problem. |
| xsltmapid | An optional parameter. If this is set, it should be the internal ID of an xsltmap record. The xsltmap_export field of this record and the XSLTDefaultDir will be used to find the XSLT script to run on the generated XML. |