From da00d54b5704d33057a1569366d0e497606dc1a0 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 8 Feb 2013 18:21:32 +0200 Subject: Add schema_catalog::exists() function --- odb/schema-catalog.hxx | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'odb/schema-catalog.hxx') diff --git a/odb/schema-catalog.hxx b/odb/schema-catalog.hxx index 861c3d0..0048644 100644 --- a/odb/schema-catalog.hxx +++ b/odb/schema-catalog.hxx @@ -20,6 +20,15 @@ namespace odb public: static void create_schema (database&, const std::string& name = ""); + + static bool + exists (database_id, const std::string& name); + + static bool + exists (const database& db, const std::string& name) + { + return exists (db.id (), name); + } }; namespace common -- cgit v1.1