![]() |
![]() |
00001 #ifndef CondCore_DBCommon_SQLiteProxy_h 00002 #define CondCore_DBCommon_SQLiteProxy_h 00003 #include "CondCore/DBCommon/interface/TechnologyProxy.h" 00004 #include <string> 00005 namespace cond{ 00006 class DBSession; 00007 class SQLiteProxy:public TechnologyProxy{ 00008 public: 00009 explicit SQLiteProxy( const std::string& userconnect ); 00010 ~SQLiteProxy(); 00011 std::string getRealConnectString() const; 00012 void setupSession( cond::DBSession& session ); 00013 }; 00014 }//ns cond 00015 #endif