Luis E. Cruz Campos writes:
> I am trying to prove a small program of test, but when trying to execute it
> this always it throws "Aborted (core dumped)", this happens at the time of
> making the connection:
>
> It is the program:
>
> #include
> #include
> #include "sqlplus.hh"
>
> cchar *u
Hi!
MySQL++ can not be used with g++ 2.96 as it is very unstable when it
comes to high C++.
Regards,
Sinisa
__ _ _ ___ == MySQL AB
/*/\*\/\*\ /*/ \*\ /*/ \*\ |*| Sinisa Milivojevic
/*/ /*/ /*/ \*\_ |*| |*||*| mailto:[EMAIL PROTECTED]
"Aborted" in a C++ program usually means an exception was thrown that
you didnt catch. In this case, the connection constructor could have
thrown something.
try
{
Connection MySQL(db, host, user, pass);
}
catch(...)
{
cout << "Connection failed." << endl;
}
Check the e
-Original Message-
From: Luis E. Cruz Campos <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>; [EMAIL PROTECTED]
<[EMAIL PROTECTED]>
Date: Monday, April 16, 2001 9:37 AM
Subject: Problem with mysql++, Aborted (core dumped)
>I am trying to prove a small program of test, but
I suggest you try the mySQL C API and see if that works first.
-Andrei Cojocaru
>From: Luis E. Cruz Campos <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED], [EMAIL PROTECTED]
>Subject: Problem with mysql++, Aborted (core dumped)
>Date: Mon, 16 Apr 2001 12:17:40 -0400
>MIME