473,508 Members | 2,357 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

mysql_real_connect problem!

Hi All

Iam using the libmysql.lib in my C++ app, I have a mySQL database setup on a
remote server something.dyndns.org and using port 2000, I use the following
little bit of code to try and access the database but it just sits there and
does nothing. Iam I doing something wrong, not doing something or is there a
problem using libmysql with a C++ app. Any help would be great.

#include <windows.h>
#include <winsock2.h>

#pragma warning (disable: 4514 4786)
#pragma warning( push, 3 )
#define VERSION "4.1"
#endif

#pragma comment(lib, "libmysql.lib")

// SQL test
#include <MySQL.h>

void MySQLTest(void)
{
MYSQL *mysql = NULL;
MYSQL *connect = NULL;
//int timeout = 4;

mysql = mysql_init(NULL);

//mysql_options(mysql, MYSQL_OPT_CONNECT_TIMEOUT, (const char *)&timeout);

connect = mysql_real_connect(mysql, "something.dyndns.org", "root", NULL,
"mysql", 2000, NULL, 0);

if ( !connect )
{
// Had a problem
Debug(("Failed to connect to database: Error: %s<br>\n",
mysql_error(mysql)));
}
else
{
Debug(("We connected to the SQL database<br>\n"));
}

mysql_close(mysql);
}

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.648 / Virus Database: 415 - Release Date: 31/03/2004
Jul 19 '05 #1
2 5298
Jasper wrote:
mysql = mysql_init(NULL);


I don't bulieve the problem is here, but you should check the return
value from mysql_init to make sure it is not NULL (which means error).
Jul 19 '05 #2
Jasper wrote:
mysql = mysql_init(NULL);


I don't bulieve the problem is here, but you should check the return
value from mysql_init to make sure it is not NULL (which means error).
Jul 19 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
3046
by: Bruce Davis | last post by:
I'm having a problem on windows (both 2000 and XP) with a multi-threaded tkinter gui application. The problem appears to be a deadlock condition when a child thread pops up a Pmw dialog window in...
11
3733
by: Kostatus | last post by:
I have a virtual function in a base class, which is then overwritten by a function of the same name in a publically derived class. When I call the function using a pointer to the derived class...
1
471
by: Jasper | last post by:
Hi All Iam using the libmysql.lib in my C++ app, I have a mySQL database setup on a remote server something.dyndns.org and using port 2000, I use the following little bit of code to try and...
117
7102
by: Peter Olcott | last post by:
www.halting-problem.com
1
3051
by: Chinmay Shah | last post by:
hi, when i try to call the mysql_init function it is not getting initilized properly. can someone help me thanks chinmay
28
5170
by: Jon Davis | last post by:
If I have a class with a virtual method, and a child class that overrides the virtual method, and then I create an instance of the child class AS A base class... BaseClass bc = new ChildClass();...
6
3785
by: Ammar | last post by:
Dear All, I'm facing a small problem. I have a portal web site, that contains articles, for each article, the end user can send a comment about the article. The problem is: I the comment length...
16
4870
by: Dany | last post by:
Our web service was working fine until we installed .net Framework 1.1 service pack 1. Uninstalling SP1 is not an option because our largest customer says service packs marked as "critical" by...
2
4533
by: Mike Collins | last post by:
I cannot get the correct drop down list value from a drop down I have on my web form. I get the initial value that was loaded in the list. It was asked by someone else what the autopostback was...
0
7120
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7323
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7380
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7039
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5626
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5050
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3192
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1553
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
415
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.