Mailing List
Home
Forum Home
MySQL General - General MySQL discussion
MySQL++ - Programming with the C++ API to MySQL
MaxDB - Everything about MaxDB, formerly known as SAP DB
ODBC - ODBC with the MySQL Connector/ODBC driver
MySQL on Win32 - Runing MySQL on Windows 9x/Me/NT/2000/XP
Java Help - Mostly related to the MySQL Connector/J driver
Perl - Perl support for MySQL with DBI and DBD::mysql
GUI - MySQL GUI Tools
Announcement
Subjects
Subject: mysql openssl Question
ERROR 1045: Access denied for user: 'root@localhost ' (Using
password: NO)
Update one field with more fields from another table
Subject: Getting Identity after INSERT
ERROR 2002: Can 't connect to local MySQL server through socket
mysql test 4 1 fails with the gis test
Subject: MySQL Cluster Software
Downgrade Mysql from 4 to 3 23
Mysql 4 0 Oracle Stored Procedure Trigger Conversion
Can 't access mysql after kernel upgrade
Executing MySQL Commands From Within C Program
Comparing and writing out BLOBS
Subject: Re: Preventing Duplicate Entries
FULLTEXT query format question
Strange behavior, Table Level Permission
Does the binary log enabling affect the MySQL performances?
mysql:it 's a db not a dbms how it 's possible?!
mysql have same function mthod as Oracle decode()
 
MySQL++
Page 6 of 46 1   2   3   4   5   6   7   8   9   10   Next 10  

Subject: Re: no version information available

Jerry Ro wrote > > No I also get the error for say resetdb from the examples Then it 's not a problem with MySQL++. Maybe your local installation of MySQL is hosed? Use your package manager '

Subject: RE: All tables for a Database ( with information)

You can hit the information_schema database or I suspect you can issue the following as a queries since they return a result sets query < < "show tables " .... row.at(x).at(0) is tablename query < <

Subject: Re: Where API Programming for C

http //dev.mysql.com/doc/refman/5.0/en/apis.html On Wed 2007-09-19 at 15 59 +0200 Mandy Llanes wrote > Hello > I want MySQL API C no C++ but i not found. Any body know wheree this API? > > Than

Subject: Where API Programming for C

Hello I want MySQL API C no C++ but i not found. Any body know wheree this API? Thank 's very much.

Subject: Re: no version information available

And I also tried a g++32 build by setting CXX to g++32 and re-./configuring / make / make install. Still the same error. On 9/19/07 Warren Young <mysqlpp@(protected) > wrote > > Jerry Ro wrote > >

Subject: Re: no version information available

Hi No I also get the error for say resetdb from the examples ./resetdb /usr/lib64/mysql/libmysqlclient.so.15 no version information available (required by ./resetdb) When I compiled my prog

Subject: All tables for a Database ( with information)

Hello I want recovery information for all tables of a database. With mysqlpp Connection i have the conection to database but how i can recovery all information for their tables ( fields type field

Subject: Re: no version information available

Jerry Ro wrote > > ./a.out /usr/lib64/mysql/libmysqlclient.so.15 no version information > available (required by /usr/local/lib/libmysqlpp.so.2) Do the examples work? What happens if you try a 3

Subject: no version information available

Hello When trying to run a program using mysql++ I get the following error ./a.out /usr/lib64/mysql/libmysqlclient.so.15 no version information available (required by /usr/local/lib/libmysqlpp.s

Subject: RE: vector error ( LNK2005)

I think that the error is showing up in the application code that is trying to use the library probably because it is linking with the static runtime library when it should be using the DLL. std ba

Subject: Re: vector error ( LNK2005)

Nils Woetzel wrote > Didn 't we have a similar problem in 2.2.3 where the MYSQLPP_EXPORT was in > front of classes That was MinGW bless its pointed little head. The reported problem is in VC++

Subject: RE: vector error ( LNK2005)

Didn 't we have a similar problem in 2.2.3 where the MYSQLPP_EXPORT was in front of classes like one derived from std vector < std string > giving the same linker error and it was not necessary to e

Subject: Re: vector error ( LNK2005)

Dale Stewart wrote > I think that the cause of this error is due to a mismatch in the C > runtime library I agree but also > (??0?$basic_string@(protected)?$char_traits@(protected)@(protected)@@(protected)?$allocator@(protected)@(protected)@@(protected)@@(protected)

Subject: RE: vector error ( LNK2005)

I think that the cause of this error is due to a mismatch in the C runtime library used between your application and MySQL++. Make sure that you are using the Multithreaded DLL version (debug or rele

Subject: vector error ( LNK2005)

Hello i define type... typedef vector <std string > StringArray two atribute off classes are. ... protected StringArray _types protected StringArray _fields but when i compile in the link

Subject: RE: install mysql++ in windows

7-zip is a good program for doing this. It can be found at http //www.7-zip.org/ -----Original Message----- From Paul [mailto pksky@(protected)] Sent Thursday September 13 2007 11 48 AM To

Subject: RE: install mysql++ in windows

Siva and all How do you "unzip " the mysql++2.3.2 tar.gz file in Windows XP? Paul -----Original Message----- From siva kumar pudi [mailto sivatech31@(protected)] Sent Thursday September 13 2007

Subject: RE: cannot open include file winsock.h

Off topic but that should be in C \Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\Include Make sure you have that in include path. -----Original Message----- From siva kumar pudi [mailto s

Subject: Re: cannot open include file winsock.h

siva kumar pudi wrote > 1 >c \documents and settings\siva\my documents\visual > studio\projects\mysql++-2.3.2\lib\common.h(43) fatal error C1083 Cannot > open include file 'winsock.h ' No such fil

Subject: cannot open include file winsock.h

Thanks Warren for your help I loaded mysql++.sln But I 'm not able to build it I 'm strucked with the following errors. Please help me to avoid this error. Thank you siva kumar1 >----

Subject: Re: install mysql++ in windows

Warren Young wrote > > Load mysql++.sln Sorry I meant mysql++.dsw. The conversion step that Visual Studio does after opening it creates mysql++.sln which you use thereafter. -- MySQL++ Maili

Subject: Re: install mysql++ in windows

Hi Warren Thanks fro your quick help. But I cant find mysql++.sln in mysql++ 2.3.2 .tar zip file which i downloaded from tangensoft.net. But I have mysql++.dsp in that zip file.Is

Subject: Re: install mysql++ in windows

siva kumar pudi wrote > I didnt find any mysql++ dir in the > mysql installation dir. Why do you expect to find one? > How to get mysql++ installed and build libraray files . Load mysql++.sln in

usage of MySQL ++

Warren Young wrote > Gevorg Harutyunyan wrote > > I can now use mysql C api function in my C++ program but I tried > > many methods to install MySQL ++ and use it in my C++ program but > > all fail

Subject: install mysql++ in windows

Hi all I am using vc++ 2005 Express edition( Windows XP) and need to connect to the database.I got mysql 5.0.45 installed and need to install mysql++ .I am completely new to vc++ mysq

usage of MySQL ++

Gevorg Harutyunyan wrote > I can now use mysql C api function in my C++ program but I tried many > methods to install MySQL ++ and use it in my C++ program but all fails. > Please help me I need t

Subject: Re: Joint Between two tables

Mandy Llanes wrote > With de Structs create by sql_create_n(................) i cant insert > operate. But when i need JOINT Between two table.....ex. SELECT t1.f1 > t2.f3 FROM t1 t2 WHERE t1.f2

usage of MySQL ++

Hi I am using Fedora Core 6. I can now use mysql C api function in my C++ program but I tried many methods to install MySQL ++ and use it in my C++ program but all fails. Please help me I need th

Subject: Joint Between two tables

With de Structs create by sql_create_n(................) i cant insert operate. But when i need JOINT Between two table.....ex. SELECT t1.f1 t2.f3 FROM t1 t2 WHERE t1.f2 t2.f2 .... how create dina

Subject: Re: Connection object timeout question...

>I don 't see that on Linux. (I assume from your "m_ " MFCism that you 're on Windows.) I see these behaviors The code is running on mac os x windows and linux. We see it on mac and windows
Page 6 of 46 1   2   3   4   5   6   7   8   9   10   Next 10