C++ Mysql++, always fails connection! - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:59:17Z http://stackoverflow.com/feeds/question/386174 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/386174/c-mysql-always-fails-connection 0 C++ Mysql++, always fails connection! Daniel 2008-12-22T12:41:01Z 2009-03-23T08:02:17Z <p>Steps:<br /> - Installed Mysql Server 2005 <br /> - Downloaded Mysql++, built both debug and release version.<br /> - Ran install.hta and selected a directory<br /> - Added library/include directory in MSVC++ 2008<br /> - Included mysql++.h in my application<br /> - Moved .dll files (libMYSQL.dll and mysqlpp.dll and mysqlpp_d.dll) to Debug folder.<br /></p> <p>Relevant code:<br /></p> <pre><code>#include "mysql++.h" class Database { private: mysqlpp::Connection* conn; public: ~Database(); bool Connect(char* ip, char* user, char* pass, char* db); }; bool Database::Connect(char* ip, char* user, char* pass, char* db) { conn = new mysqlpp::Connection(false); return conn-&gt;connect(db, ip, user, pass); } Database::~Database() { if(conn) { delete[] conn; } } </code></pre> <p>Problem:</p> <pre><code>Database db; db.Connect("127.0.0.1", "root", "mypassword", "mydb"); </code></pre> <p>This will <em>always</em> return to false, even though I am using the exact same credentials with MySQL Administrator and logging in correctly.</p> <p>Help :(</p> http://stackoverflow.com/questions/386174/c-mysql-always-fails-connection/386186#386186 0 Answer by Daniel for C++ Mysql++, always fails connection! Daniel 2008-12-22T12:46:59Z 2008-12-22T12:46:59Z <p>I seem to have opened a thread too fast again :) I had a little typo in my database name (case sensitive). </p> <p>New question:<br/> I'm relatively new to C++ and OOP, would this be the prefered method of using the mysql++ library?</p> http://stackoverflow.com/questions/386174/c-mysql-always-fails-connection/413781#413781 0 Answer by Mark Essel for C++ Mysql++, always fails connection! Mark Essel 2009-01-05T17:01:02Z 2009-01-05T17:01:02Z <p>There's scripting languages that can do some fancy stuff with sql databases (I used php with my forum database), but I think what you have setup is an excellent way of proceeding.</p> http://stackoverflow.com/questions/386174/c-mysql-always-fails-connection/414081#414081 2 Answer by Martin York for C++ Mysql++, always fails connection! Martin York 2009-01-05T18:45:52Z 2009-01-05T18:53:03Z <p>I would not make this pointer:</p> <pre><code>mysqlpp::Connection* conn; </code></pre> <p>Just make it a normal member of the class.</p> <pre><code>mysqlpp::Connection conn; </code></pre> <p>This has several advantages.<br> But the most important to you is that you will avoid the shallow copy problem.<br></p> <h3>Rule of 4:</h3> <p>If an object is the owner of a RAW pointer then you need to define the following 4 members to make sure you handle the memory management correctly:</p> <pre><code>* Constructor * Copy Constructor * Assignment Operator * Destructor </code></pre> <p>This is because if you do not define them the compiler will automatically generate the above methods for you. In most situations these work, but if your object contains a RAW pointer that you own (ie you delete it) then things will go horibly wrong witht he compiler generated version of these methods.</p> http://stackoverflow.com/questions/386174/c-mysql-always-fails-connection/414096#414096 0 Answer by Martin York for C++ Mysql++, always fails connection! Martin York 2009-01-05T18:55:33Z 2009-01-05T18:55:33Z <p>Also I would use strings rather than char pointers:</p> <pre><code>bool Database::Connect(char* ip, char* user, char* pass, char* db) </code></pre> <p>Try:</p> <pre><code>Database::Database(std::string const&amp; ip, std::string const&amp; user, std::string const&amp; pass, std::string const&amp; db) </code></pre> <p>Note by moving the code from the method Connect() to the constructor() you can make the object always valid.</p> http://stackoverflow.com/questions/386174/c-mysql-always-fails-connection/672521#672521 0 Answer by Brent for C++ Mysql++, always fails connection! Brent 2009-03-23T08:02:17Z 2009-03-23T08:02:17Z <p>can you past what the error message is? this problem should be simple and the error message can point out the road.</p>