00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef RESOURCEPOOL_MYSQL_MYSQLCONNECT_HH
00025 #define RESOURCEPOOL_MYSQL_MYSQLCONNECT_HH
00026
00027 #include <string>
00028 #include <sstream>
00029
00030 #ifndef MYSQL_INCLUDE_FLEXLEXER
00031 #undef yyFlexLexer
00032 #define yyFlexLexer mysql_connectFlexLexer
00033 #include <FlexLexer.h>
00034 #endif
00035
00036 namespace fatalmind {
00037
00038 class mysql_connect: public mysql_connectFlexLexer {
00039 public:
00040 mysql_connect(const std::string& host, const std::string& user, const std::string& pass, const std::string& db, int port);
00041 mysql_connect(const std::string& connect);
00042 mysql_connect(const mysql_connect& mc);
00043
00044 std::string getHost() const;
00045 std::string getUser() const;
00046 std::string getPass() const;
00047 std::string getDb() const;
00048 int getPort() const;
00049
00050 private:
00051 void _validate() const;
00052 void _parsingError(char ch) const;
00053 int yylex ();
00054
00055 std::string _host;
00056 std::string _user;
00057 std::string _pass;
00058 std::string _db;
00059 int _port;
00060 };
00061 }
00062
00063 #endif