X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fdbms.mysql%2FInputBind.hpp;fp=include%2Fanna%2Fdbms.mysql%2FInputBind.hpp;h=0000000000000000000000000000000000000000;hb=a3b95648bd76140ef55e0b5941d423eee6c3856f;hp=8f58e1e5ad61448a4db74d8cf372a7816bccfc2b;hpb=94fc4366adedbf26ca6ef3104f88d41fa85f5a72;p=anna.git diff --git a/include/anna/dbms.mysql/InputBind.hpp b/include/anna/dbms.mysql/InputBind.hpp deleted file mode 100644 index 8f58e1e..0000000 --- a/include/anna/dbms.mysql/InputBind.hpp +++ /dev/null @@ -1,57 +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_mysql_InputBind_hpp -#define anna_dbms_mysql_InputBind_hpp - -#include - -#include - -namespace anna { - -class DataBlock; - -namespace dbms { - -class Data; -class Statement; - -namespace mysql { - -class Statement; - -class InputBind : public dbms::InputBind, public BaseBind { -public: - InputBind(const char* name, dbms::Data& data); - virtual ~InputBind(); - -private: - void code() const throw(RuntimeException); - - void codeShortBlock(dbms::Data&) throw(); - void codeDate(dbms::Data&) throw(); - - static char asCharacter(const char byte) - throw() { - return (byte >= 0 && byte <= 9) ? (byte + '0') : ((byte - 0xa) + 'A'); - } - - /* Funciones virtuales puras */ - void prepare(anna::dbms::Statement*, anna::dbms::Connection*, const int pos) throw(RuntimeException); - void release(anna::dbms::Statement*) throw() {;} - - friend class mysql::Statement; -}; - -} -} -} - -#endif -