QSqlRecord QSqlDatabase::record ( const QString & tablename ) const
QSqlRecord QSqlDatabase::record ( const QString & tablename ) const=>QSqlField QSqlRecord::field ( int index ) const=>int QSqlField::length () constint QSqlField::precision () const
SQLCREATE TABLE test (i integer, r real, t text, b blob);SELECT rowid, typeof(i), typeof(r), typeof(t), typeof(b) FROM text;
$ echo "PRAGMA table_info(\"clients\");" | sqlite3 ~/ololo.sqlite0|id|INTEGER|1||11|created|DATETIME|0||02|name|VARCHAR|0||03|dob|DATE|0||04|height|INTEGER|0||05|weight|FLOAT|0||06|purpose|TEXT|0||07|disease|TEXT|0||08|limits|TEXT|0||0