#ifndef METATYPE_H #define METATYPE_H #include static inline QMetaType::Type METATYPE(const QSqlField &f) { #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) return static_cast(f.type()); #else // QT 6 return static_cast(f.metaType().id()); #endif // QT 6 } #endif // METATYPE_H