Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 651 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 651 Bytes

Qt Additions

This project contains various additions to Qt that aren'tpart of Qt yet.

QSqliteSettingsFormat: SQLite backstore for QSettings

This backend improves the resiliance of QSettings data against system crashes and disk full conditions. It brings the stability of QSettings data close to the stability of an SQLite database, which is among the most well tested and stable pieces of software around. The example use:

// place this into your main function:
QSettings localSettingsObject(
  QSettings::registerFormat("x", SqliteSettingsFormat::readFile, SqliteSettingsFormat::writeFile),
  QSettings::UserScope, "Company", "app");