473,396 Members | 1,918 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

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 5289
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
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
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
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
by: Peter Olcott | last post by:
www.halting-problem.com
1
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
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
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
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
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
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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
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...
0
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
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,...

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.