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 20 of 46 Previous 10   11   12   13   14   15   16   17   18   19   20   Next 10  

mysql++ build failed toward MinGW + STLport 5+

The make process encountered error when compiling lib/manip.cpp with following error messages manip.cpp In function `mysqlpp SQLQueryParms& mysqlpp operator < <(mysqlpp quote_type2 mysqlpp SQLSt

Problem applying patch for Nullable fields in SQLSS

Hello I found the thread on the patch for nullable fields in sqlss and I tried to apply it to the version 2.1.1 source code that I have. I ran the patch program with -p0 option and had several hu

missing SONAME?

Hi With mysql++ 2.1.x it looks like the Bakefile changes have dropped the SONAME. I 'm not sure how (or even if) Bakefile actually supports SONAMEs but it would be really nice to actually have the

Regarding: Patch: Nullable fields in SQLSS

Hi! I 've tried the nullable patch for SQLSS ( http //lists.mysql.com/plusplus/5435 ) and got it working almost. It compiles and accepts null-fields ok.. but I loose all my spaces in text fields.

Exceptions when executing query < < "select * from stock ";

Hi I am a newbie to mysql++. I have successfully compiled the mysql++ lib under the environment of visual studio 2005. And then I tried to compile and execute the examples to make sure the lib is wo

Install problem with MySQL++ and Xandros

Hi I am working on the Xandros flavour of UNIX which automatically has MySQL v 4.0.24 installed on it. I am trying to install mysql++ v 2.1.1 on it. I have untarred the tar.gz file and try the "./c

Stored Procedures / multi-query

Hello After searching a while I found there are some issues with MySQL++ and MySQL Stored Procedures. Reference http //www.mysqltalk.org/stored-procedures-and-multi-queries-bug-vt158123.html Al

Unresolved symbols in Query (Lockable)

Compiling my application I get sql.obj error LNK2001 unresolved external symbol "private virtual void __thiscall mysqlpp Query unlock(void) " (?unlock@(protected)@(protected)@@(protected)) sql.obj error LNK

Problems building version 2.1.1

Hi all I get the following error when trying to build from source In file included from custom1.cpp 29 stock.h In function `void populate_stock(stock* const mysqlpp Row&) [with mysqlpp sql_du

Subject: MySQL++ and Boost.Build

If you 're a user o bjam and Boost.Build or if you have a Boost installation lying around attached to this message is a "Boost.Build plug in " package with Jamfiles ready to build mysqlpp.lib and all

MinGW, VC8.0 and x86_64 testing

I have done really heavy testing of version 2.1.1 on all those platforms and have achieved success in almost any situation (exception SSQLS with NULL but that 's planned for 3.0) the only thing I a

A couple of questions on 2.1.1

Jimmy Guo wrote > > The --enable-thread-check in 2.1.1 's configure.ac is handled too late. > As a result the ACX_PTHREAD call is a nop in terms of influencing > MYSQL_API_LOCATION. Before I submit

Subject: Retrieving Binary Data

Hello After trial and error over a few hours it looks like retrieving binary data that contains 0 (null) characters is not possible with mysql++. Is this correct? I am using mysql++ 2.1.1 and My

Linker error: unresolved external symbol (2.1.1)

Hi I tried to build the dll using MsVs7.1 and the given vc workspace but I got a linker error Linking... Creating library Release\mysqlpp.lib and object Release\mysqlpp.exp connection.obj error

Error when fetching data of a Union query with Version 2.1.0

While fetching data from a union query as shown in the code fragment below I get the following error when fetching the data from the second part which is only one row. The same behaviour is found w

Error with mysql types in Visual Studio 2003

After regenerating the custom.h and custom-macros.h I could succesfully compile. But when I include custom datatypes such as mysqlpp Date in the sql_create macro I get the following error c \Progr

Subject: NULL field comparison

Hello I 'm fairly new to mysql and I have a question about finding out if a particular field is NULL for type int and varchar. Using the quick example in the "User 's Guide " I tried comparing th

2.1.1 Does not build static library

Hello RHEL 4 gcc 3.4.3 MySQL-server-standard-5.0.19 installed MySQL-client-standard-5.0.19 installed MySQL-devel-standard-5.0.19 installed With version 2.0.7 I was able to build the static librar

mysql info with mysql++ vers 1.7.4

Hi after I 've connected with mysql (4.1.12) I need to know some info like CHARACTER-SET. I 've tried with Connection- >info() but the result is always "... " How can I obtain this information with

RELEASE: v2.1.1

Several interesting fixes in this release o MinGW and Cygwin will now build and link to mysqlpp DLLs. o Fixed bug in Query causing it to initialize the "throw exceptions " flag inc

Visual C++ 7.1. compiler error when including custom.h

I am using MySQL 5.0.19 and MySQL++ 2.1.0 under Visual Studio 7.1. The following code compiles with an error #include <mysql++.h > #include <custom.h > int main(int argc char* argv[]) { return 0

Access denied

Hi I have setup mysql++ fine setup the test db and everything seems to be working. However when I run ./simple1 I get the following error Database connection failed Access denied for user 'root

throw exceptions flag not properly copied in the copy constructor for mysqlp

Joel Fielder wrote > > I think that the copy constructor for mysqlpp Query is copying the > wrong exceptions flag. Indeed! exceptions() is a method on basic_ios! It 's almost random chance that

Escaping a string

Hi there I 've just started using the MySQL++ library and has run into trouble when I escape strings. Consider the query below where column "foo " is a string and column "bar " is an int mysqlpp

memory leak when running with mysql++ or so it seems

Hi I have a program which receives a packet from another application and processes it against the DB depending on whats passed. The structure of the program is event driven so I have a class whic

throw exceptions flag not properly copied in the copy constructor for mysqlpp::Q

Hello I would like to highlight a possible bug according to the following entry in the change log for version 2.0.0 2005.08.16 (r1031) The "Excess Hair Removal " release >The "throw exceptions " fl

Building Shared library with mingw

I actually found a way to build a shared library all you have to do is go through all thwe process to build a static one then use one of the usefull minngw tools a2dll all you have to do is a2dl

RELEASE: v2.1.0

It 's finally here version 2.1 o Converted automake and makemake files to their equivalents in Bakefile format. o Added the Transaction class which makes it easy to use tra

Subject: problem with building mysql++

configure give me this checking for MySQL library directory... configure error Didn 't find mysqlclient_r library in '/usr/local/mysql/lib/mysql /usr/local/lib/mysql /opt/mysql/lib/mysql /usr/lib/m

Solaris 10 exceptions problem.

Hi I 've been using mysql++ for years with all the disgusing patches I 've finaly found a good time to upgrade to 2.x. But I 'm having a major problem with exceptions. It works perfectly on my worksta
Page 20 of 46 Previous 10   11   12   13   14   15   16   17   18   19   20   Next 10