#pragma once #include "config.h" #if USE_SQLITE #include #include #include namespace DB { using SQLitePtr = std::shared_ptr; SQLitePtr openSQLiteDB(const String & database_path, ContextPtr context, bool throw_on_error = true); } #endif