00001 #if USING_OCICPP
00002
00003
00004
00005
00006
00007
00008
00009 #include "ocicpp.h"
00010 #else
00011
00012
00013
00014
00015
00016 #include <string>
00017
00018 namespace OCICPP
00019 {
00020 class Connection
00021 {
00022 public:
00023 void drop() {};
00024 };
00025
00026 class db
00027 {
00028 public:
00029
00030 static void init() {};
00031 static Connection *connect(const std::string &tnsname,const std::string &user,const std::string &password)
00032 {
00033 ACE_UNUSED_ARG(tnsname);
00034 ACE_UNUSED_ARG(user);
00035 ACE_UNUSED_ARG(password);
00036 return 0;
00037 }
00038 };
00039
00040 }
00041
00042
00043 #endif