C++ Mysql++, always fails connection! - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T13:59:17Zhttp://stackoverflow.com/feeds/question/386174http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/386174/c-mysql-always-fails-connection0C++ Mysql++, always fails connection!Daniel2008-12-22T12:41:01Z2009-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->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#3861860Answer by Daniel for C++ Mysql++, always fails connection!Daniel2008-12-22T12:46:59Z2008-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#4137810Answer by Mark Essel for C++ Mysql++, always fails connection!Mark Essel2009-01-05T17:01:02Z2009-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#4140812Answer by Martin York for C++ Mysql++, always fails connection!Martin York2009-01-05T18:45:52Z2009-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#4140960Answer by Martin York for C++ Mysql++, always fails connection!Martin York2009-01-05T18:55:33Z2009-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& ip,
std::string const& user,
std::string const& pass,
std::string const& 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#6725210Answer by Brent for C++ Mysql++, always fails connection!Brent2009-03-23T08:02:17Z2009-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>