diff --git a/include/SQLiteCpp/Database.h b/include/SQLiteCpp/Database.h index 1276109..c849443 100644 --- a/include/SQLiteCpp/Database.h +++ b/include/SQLiteCpp/Database.h @@ -477,6 +477,12 @@ public: */ static Header getHeaderInfo(const std::string& aFilename); + // Parse SQLite header data from a database file. + Header getHeaderInfo() + { + return getHeaderInfo(mFilename); + } + /** * @brief BackupType for the backup() method */