X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fdbms.oracle%2FDescriptor.hpp;fp=include%2Fanna%2Fdbms.oracle%2FDescriptor.hpp;h=0000000000000000000000000000000000000000;hb=851ff2962362fd5bad874e8ed91445b296eaca24;hp=af2395d86d57ffcc03f32e8f7263ce7d79674bd5;hpb=78be86969d2f26a9084b0c4af6ce43d5fa4ed3fd;p=anna.git diff --git a/include/anna/dbms.oracle/Descriptor.hpp b/include/anna/dbms.oracle/Descriptor.hpp deleted file mode 100644 index af2395d..0000000 --- a/include/anna/dbms.oracle/Descriptor.hpp +++ /dev/null @@ -1,49 +0,0 @@ -// ANNA - Anna is Not Nothingness Anymore // -// // -// (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo // -// // -// See project site at http://redmine.teslayout.com/projects/anna-suite // -// See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE // - - -#ifndef anna_dbms_oracle_Descriptor_hpp -#define anna_dbms_oracle_Descriptor_hpp - -#include - -struct OCIEnv; -struct OCIError; -struct OCIBind; -struct OCILobLocator; -struct OCISvcCtx; - -namespace anna { - -namespace dbms { - -namespace oracle { - -class Database; -class Connection; - -struct Descriptor { - dvoid** reference; - OCIEnv* env; - OCIError* error; - OCISvcCtx* context; - int type; - - Descriptor(dvoid** _handle) : reference(_handle) { - *reference = NULL; env = NULL; error = NULL; context = NULL; type = -1; - } - virtual ~Descriptor(); - - void allocate(Database&, Connection*, const int type) throw(RuntimeException); -}; - -} -} -} - -#endif -