#include <QtCore/qvariant.h>
#include <QtCore/qstring.h>
Go to the source code of this file.
◆ operator<<()
Definition at line 523 of file qsqlfield.cpp.
525 #ifndef Q_BROKEN_DEBUG_STREAM 528 dbg.nospace() <<
", length: " << f.length();
529 if (f.precision() >= 0)
530 dbg.nospace() <<
", precision: " << f.precision();
532 dbg.nospace() <<
", required: " 534 dbg.nospace() <<
", generated: " << (f.isGenerated() ?
"yes" :
"no");
536 dbg.nospace() <<
", typeID: " << f.typeID();
537 if (!f.defaultValue().isNull())
538 dbg.nospace() <<
", auto-value: \"" << f.defaultValue() <<
'\"';
539 dbg.nospace() <<
')';
542 qWarning(
"This compiler doesn't support streaming QSqlField to QDebug");
static const char * typeToName(Type type)
Converts the enum representation of the storage type, typ, to its string representation.
Q_CORE_EXPORT void qWarning(const char *,...)
#define Q_UNUSED(x)
Indicates to the compiler that the parameter with the specified name is not used in the body of a fun...