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 7 of 46 1   2   3   4   5   6   7   8   9   10   Next 10  

Subject: Re: Connection object timeout question...

Graham Reitz wrote > Are there any known issues with the Connection object timeout parameter? The main fact of timeouts in MySQL++ came up here just last Wednesday. (See the thread "Timeouts on que

Subject: Connection object timeout question...

Are there any known issues with the Connection object timeout parameter? Changing the timeout to 5 seconds results in a ~22 second timeout and a 22 second timeout results in a ~22 second timeout.

SQLS

Hello I 'm need SQL Struct ++ with plus 25 fields but the MySQL++ only implement to 25 fields. I reference sql_create_n(................) Ex. sql_create_#(NAME COMPCOUNT SETCOUNT TYPE1 ITEM1 .

Subject: Re: Didn 't find the MySQL include dir

Valentine Rozental wrote > and ./configure couldn 't find the mysqlclient library. I 've fixed it by > adding follow links in the /usr/lib > > lrwxrwxrwx 1 root root 26 2007-09-09 10 32 libmysqlc

Subject: Didn 't find the MySQL include dir

I 've installed MySQL on my Kubuntu by running $sudo apt-get install mysql mysql version is mysql Ver 14.12 Distrib 5.0.38 for pc-linux-gnu (i486) using readline 5.2 I got also MySQL++ sources an

Subject: Re: Timeouts on queries under Solaris

Des Smith wrote > > I 'm using the version of the libraries with the fix for the > Connection- >set_option issue that was reported on the MySQL mailing list I don 't know why you call this a "version

Subject: Timeouts on queries under Solaris

I 'm using the mysql++ 2.2.3 libraries on Solaris Sun0S 5.10. I 'm using the version of the libraries with the fix for the Connection- >set_option issue that was reported on the MySQL mailing list

Subject: Re: Windows Form Application - MySQL problem

I dont think that the setting arent right because at the very start of the project when I only had one or two forms there was no problem. After inserting 3 or 4 errors showed up. And this happened

Subject: Re: std::vector of mysqlpp::Row

Yassin wrote > > In MySQL++ v2.3 the Result object must outlive the Row objects that > > come from it but with storein() the Result object only lasts as long > > as the storein() call. > > Can you e

Subject: Re: Windows Form Application - MySQL problem

Efstratios Gavves wrote > I think it is connected to MySQL++ somehow because when I remove the > part referred to MySQL++ everything is fine. Yet no error message references MySQL++ in any way.

Subject: Re: Windows - install.bat and stuff

Efstratios Gavves wrote > Connection failed Unknown MySQL server 'resetb '(11001) You may be running exrun incorrectly. My guess is that you 're saying something like this exrun.bat resetdb rese

Subject: RE: Get ID when inserting with Template Queries

Hi Alex > After inserting the new row in a table with an AUTO_INCREMENT field > call mysqlpp Connection insert_id() > to get the value of the AUTO_INCREMENT in your new row. thanks a lot! Exact

Subject: Re: Get ID when inserting with Template Queries

Martin After inserting the new row in a table with an AUTO_INCREMENT field call mysqlpp Connection insert_id() to get the value of the AUTO_INCREMENT in your new row. Alex On 03/09/2007 at 6 40

Subject: Get ID when inserting with Template Queries

Hi I suppose this is somewhere in the docs but I can 't find a sane way to search for it. So please s.o. hit me with a cluestick I have this code readoutTemplate "insert into readout values "

Subject: MacOSX mysql install location

Hi Warren ./configure needed to have --with-mysql /usr/local/mysql argument when building mysql++2.3.2 after installing latest mysql .dmg I couldn 't figure out what to do with those m4 files to

Subject: Re: Windows Form Application - MySQL problem

I think it is connected to MySQL++ somehow because when I remove the part referred to MySQL++ everything is fine. ?????? ?????? ??? Warren Young <mysqlpp@(protected) > > Efstratios Gavves wrote

Subject: Re: Windows - install.bat and stuff

Connection failed Unknown MySQL server 'resetb '(11001) This is the error in the command line. When you execute install.bat in command line the only thing it says is "install.bat works with [subdir

Subject: Re: std::vector of mysqlpp::Row

> In MySQL++ v2.3 the Result object must outlive the Row objects that > come from it but with storein() the Result object only lasts as long > as the storein() call. Can you explain me why? Even i

Subject: Re: std::vector of mysqlpp::Row

Yassin wrote > Hi I 'm trying to store result rows in a vector like this I don 't believe it 's possible to use this feature with raw Row objects in v2.3. It 's meant to be used with SSQLS see exa

Subject: Re: Problem compiling the examples...

joh3@(protected) wrote > > when compiling the examples i get errors like "undefined reference to > mysqlpp get_library_version() " This is a good thing it is telling you something important wh

Subject: Problem compiling the examples...

Hi I just upgraded to the 2.3.2 version and i am getting the following issue on one of my machines (the other works fine).... when compiling the examples i get errors like "undefined reference to

Subject: Re: Windows - install.bat and stuff

Efstratios Gavves wrote > > the install.bat must be followed by an argument > which declares the name of the subdirectory in the dir c \\mysql++. This seems a small matter to me. If you run inst

Subject: std::vector of mysqlpp::Row

Hi I 'm trying to store result rows in a vector like this mysqlpp Connection con(...) mysqlpp Query query con.query() query < < "SELECT * FROM test_table " std vector <mysqlpp

Subject: Re: Windows Form Application - MySQL problem

Efstratios Gavves wrote > Do you know whats going on? I don 't see anything in this error list that implicates MySQL++. Take this to a forum dedicated to Windows Forms. -- MySQL++ Mailing List Fo

Subject: Windows Form Application - MySQL problem

Hi. I tried to develop a Windows Form Application using mysql++. At first there was no problem. I followed the instructions as described in the Readme files and it did compiled at the start. There w

Subject: Re: Produce Error Example

Mandy Llanes wrote > I want execute the example "examples/simple1.cpp " Are you using the project files that shipped with MySQL++ or are you trying to create your own? If the latter have you app

Subject: Windows - install.bat and stuff

Hello!!! Well as I was trying to install properly mysql++ I had some problems with the READMEs. In fact I suppose they are not clear enough in some points. Specifically the install.bat must b

Subject: Produce Error Example

I want execute the example "examples/simple1.cpp " and it 's produce this error..... Error 1 error LNK2019 unresolved external symbol _mysql_shutdown@(protected) referenced in function "public bool __thiscal

API C++

It 's part of MySql (not MySql++). When you install MySql you must install the developer part which includes the header libs etc. I believe for the Windows install this is *not* part of the defau

API C++

Hello I 'm downloaded MySQL API for C++ but when i 'm compile the project produce an error because I.haven 't "mysql_version.h " file. anybody know where 's find this complete pack?(For connect to MySQL
Page 7 of 46 1   2   3   4   5   6   7   8   9   10   Next 10