Search Discussions
-
19
mysql++
Hi I am new to mysql and programming in general, and wish to interface with a c++ front end application (console based) using mysql++. I am a windows user, using CodeWarrior Pro 5 from Metrowerks. ...Reeza Awoodun
Mar 28, 2004 at 11:53 am
Apr 20, 2004 at 11:21 am -
Hi, I'm a new mysql++ developer and I've tried one simple cpp application and I get the following error: (Help will be appreciated) THANK YOU! <ERROR $ make c++ -Wno-deprecated -lmysqlclient qDB.cpp ...
Voicu Liviu
Mar 26, 2004 at 10:47 am
Mar 27, 2004 at 4:04 pm -
Hi all, I just joined this mailing list, and want to ask about mysql++ for mingw. Somebody in mingw mailing list told me to use mysys, but it stoped when I try to use : ./configure --prefix=/mingw ...
Hadi
Mar 28, 2004 at 10:16 am
Apr 30, 2004 at 9:29 pm -
My program was running great, until I added another query execution... I can run this fine with just a call to either putorders or putunits, but when I call both I get an Aborted message on the first ...
Daniel Hoult
Mar 12, 2004 at 9:04 pm
Mar 16, 2004 at 12:21 pm -
Hello list: My name is JD Smith and I come to you today with a few questions. I have spent the last hour or so browsing the archives and have not quite found the answer to my question. 1) What is the ...
JD Smith
Mar 7, 2004 at 6:26 am
Mar 10, 2004 at 11:08 am -
After a good bit more time tinkering around, I have determined to just use a plain string and erase it after each query.. This works fine. I now have a mysql error on on equery though. Below is the ...
JD Smith
Mar 24, 2004 at 5:20 pm
Mar 26, 2004 at 2:22 pm -
Well, I finally got everything working again so I went to start making modifications for the next stage of implementation of my project. Below is an example pulled from one of a few functions that ...
JD Smith
Mar 24, 2004 at 4:07 am
Mar 25, 2004 at 11:40 am -
I'm having real struggles getting to grips with this API. Maybe I shouldn't have tried installing it at the same time as trying to learn C++, but anyway... I'm on Linux using gcc 3.3. I first tried ...
Steve Mansfield
Mar 12, 2004 at 4:45 pm
Mar 13, 2004 at 1:06 pm -
#include <iostream #include <vector #include <sqlplus.hh #include <custom.hh sql_create_5 (stock, 1, 5, string, item, int, num, double, weight, double, price, Date, sdate) int main() { try { // its ...
Nelson evangelista
Mar 19, 2004 at 6:46 pm
Mar 23, 2004 at 2:26 pm -
Hello everybody, I am new to programming in qt. But I have had progammed in VC++. Can anybody show me , how I can invoke a window like QWidget or QDialog when push a button, which show me than a ...
Hakan AKIN
Mar 3, 2004 at 5:27 pm
Mar 4, 2004 at 12:40 am -
I see people mention patches on here halfway frequently. Are there any patches for the v1.7.1 visual studio version? - JD
JD Smith
Mar 31, 2004 at 1:43 pm
Apr 1, 2004 at 6:43 pm -
Hi, I am enhancing a program (in VC++) to be able to use a MySQL database. Now, the way I start MySQL in case the server is not already running when my program is run is by using: HINSTANCE result = ...
Rumpel Stiltzkin
Mar 30, 2004 at 4:46 am
Mar 31, 2004 at 10:39 am -
Anyone got a good function to escape strings? I need to turn: "insert into blah(blah1,blah2) values('blah's' and 'more blah's')" Into: "insert into blah(blah1,blah2) values('blah\'s' and 'more ...
Daniel Hoult
Mar 24, 2004 at 3:55 pm
Mar 25, 2004 at 11:36 am -
Hi: Is there anyone in the list that can help me? I'm using mysql++ on W2000, VC++ 6.0 and I have some questions. Do I have to close, dealocate or free the Result and Query objects? Thanks. Regards. ...
Fernando
Mar 11, 2004 at 10:31 pm
Mar 13, 2004 at 1:10 pm -
I applied the gcc 3.3 patch to mysql++ 1.7.9. That went fine, as did ./configure. When I typed ./make I got: make all-recursive make[1]: Entering directory `/home/steve/technical/C/mysql++-1.7.9' ...
Steve Mansfield
Mar 6, 2004 at 10:28 pm
Mar 8, 2004 at 6:07 pm -
Hello. I am getting strange results using the C API and the type MYSQL_FIELD type... I'm expecting a number < 1000 but I'm getting numbers in excess of 400,000. MYSQL_FIELD* field; then I get the ...
Jaret
Mar 25, 2004 at 11:30 pm
Mar 26, 2004 at 12:12 pm -
Hi, I'm trying to get started with programming using mysql++, but I'm not really having much luck so far. I'm just trying basic stuff like Connection con (HOST, DBNAME, USER, PASS); type stuff, but i ...
Daniel Andersen
Mar 19, 2004 at 12:29 am
Mar 19, 2004 at 11:56 am -
using gcc 3.2.2 I successfully applied the mysql++-gcc.3.0.patch, mysql++-gcc.3.2.patch, and mysql++-gcc.3.2.2.patch without error. ./configure make comes back with warnings on deprecations, but I ...
Daniel Hoult
Mar 3, 2004 at 10:14 pm
Mar 5, 2004 at 11:44 am -
Hello, I have used GNU patch, try with the 3.3 and 3.3.2 patch. I always had to update the libtool files. The best I did was to sucessfully pass the ./configure step but then has I use recent ...
Antoine Hersen
Mar 27, 2004 at 10:45 pm
Mar 29, 2004 at 11:44 am -
Hello, I'm new to MySql++. Can anyone tell me if MySql++ API is available for VC++ 7 ? Regards, Ionut
Ionut Filip
Mar 24, 2004 at 12:30 pm
Mar 25, 2004 at 11:42 am -
Well, it compiles and runs now, definately an improvement. Code in question is below: str << "UPDATE material SET ar_unit = '" << argument << "' WHERE type = '" << ch- desc- edit_string << "'" << ...
JD Smith
Mar 24, 2004 at 4:08 pm
Mar 24, 2004 at 5:44 pm -
I am using mysql++ 1.7.1 for microsoft visual studio and mysql version 4.0 - JD
JD Smith
Mar 24, 2004 at 4:12 am
Mar 24, 2004 at 12:03 pm -
Does someone know that there is a maximum number of Connections in a single process? Jae
Jae Joo
Mar 17, 2004 at 1:20 am
Mar 17, 2004 at 12:00 pm -
hi i'm using a simple query command to execute a select statment Result CMySqlConnector::executeSelect( std::string sql, Connection m_clConnection ) { Query query( &m_clConnection, false ); //SQL ...
Thomas Werth
Mar 16, 2004 at 7:00 am
Mar 16, 2004 at 12:30 pm -
i'm using vc 6.0 with mysql++ 1.7.1 for vc 6.0. I wrote a db adapter class like this #include <mysql++ class DBAdapter { public: void release(); void test(); MYSQL_RES* executeSQL( std::string sql ); ...
Thomas Werth
Mar 9, 2004 at 2:36 pm
Mar 10, 2004 at 11:32 am -
Hi I am new to this project and I want to know how to contribute?Is there any document that describes what features need to be added. Thanks in advance. Bharathi
Vijayabharathi sudabattula
Mar 9, 2004 at 9:23 pm
Mar 10, 2004 at 11:09 am -
Hi all, I have patched my gcc version and applied the custom.pl extra patch, and successfully compiled mysql++ 1.79. I have a simple sample I am trying to compile and I get this error. sql_test.cpp: ...
Tim Murison
Mar 5, 2004 at 10:33 pm
Mar 8, 2004 at 12:02 pm -
Hello, I've tracked down the problems the problems with MySql++ on IA64, they're not compiler related. Mostly they resulted from C-style casts to improper sized datatypes. (long int is 8 bytes on ...
Gunther Lenz
Mar 1, 2004 at 10:31 am
Mar 1, 2004 at 12:09 pm -
My environment is Windows 2000 Professional, Microsoft Visual C++ Enterprise Edition. We had developed an application using MySQL++ with MySQL 3.23 and everything worked fine. Then, we upgraded to ...
Brandmeyer, Jo Ellen
Mar 31, 2004 at 10:29 pm
Mar 31, 2004 at 10:29 pm
Group Overview
group | plusplus |
categories | mysql |
discussions | 29 |
posts | 131 |
users | 25 |
website | mysql.com |
irc | #mysql |
25 users for March 2004
Archives
- July 2014 (20)
- June 2014 (4)
- May 2014 (1)
- April 2014 (1)
- March 2014 (2)
- February 2014 (7)
- January 2014 (24)
- December 2013 (11)
- November 2013 (8)
- October 2013 (1)
- August 2013 (3)
- June 2013 (24)
- May 2013 (7)
- April 2013 (1)
- March 2013 (6)
- January 2013 (6)
- September 2012 (9)
- August 2012 (7)
- July 2012 (2)
- May 2012 (9)
- April 2012 (3)
- March 2012 (6)
- February 2012 (5)
- January 2012 (21)
- December 2011 (8)
- October 2011 (21)
- September 2011 (4)
- August 2011 (21)
- July 2011 (49)
- June 2011 (8)
- May 2011 (28)
- April 2011 (44)
- March 2011 (66)
- February 2011 (19)
- January 2011 (50)
- December 2010 (42)
- November 2010 (21)
- October 2010 (31)
- September 2010 (32)
- August 2010 (27)
- July 2010 (22)
- June 2010 (23)
- May 2010 (29)
- April 2010 (13)
- March 2010 (23)
- February 2010 (18)
- January 2010 (41)
- December 2009 (41)
- November 2009 (64)
- October 2009 (10)
- September 2009 (7)
- August 2009 (31)
- July 2009 (35)
- June 2009 (69)
- May 2009 (41)
- April 2009 (30)
- March 2009 (78)
- February 2009 (64)
- January 2009 (65)
- December 2008 (87)
- November 2008 (102)
- October 2008 (96)
- September 2008 (91)
- August 2008 (98)
- July 2008 (105)
- June 2008 (44)
- May 2008 (62)
- April 2008 (70)
- March 2008 (58)
- February 2008 (62)
- January 2008 (99)
- December 2007 (127)
- November 2007 (63)
- October 2007 (70)
- September 2007 (90)
- August 2007 (124)
- July 2007 (134)
- June 2007 (103)
- May 2007 (45)
- April 2007 (81)
- March 2007 (89)
- February 2007 (72)
- January 2007 (97)
- December 2006 (60)
- November 2006 (95)
- October 2006 (91)
- September 2006 (73)
- August 2006 (65)
- July 2006 (51)
- June 2006 (92)
- May 2006 (37)
- April 2006 (60)
- March 2006 (99)
- February 2006 (90)
- January 2006 (101)
- December 2005 (91)
- November 2005 (155)
- October 2005 (70)
- September 2005 (141)
- August 2005 (158)
- July 2005 (122)
- June 2005 (107)
- May 2005 (154)
- April 2005 (122)
- March 2005 (191)
- February 2005 (87)
- January 2005 (51)
- December 2004 (137)
- November 2004 (149)
- October 2004 (58)
- September 2004 (93)
- August 2004 (124)
- July 2004 (22)
- June 2004 (44)
- May 2004 (75)
- April 2004 (114)
- March 2004 (131)
- February 2004 (169)
- January 2004 (119)
- December 2003 (87)
- November 2003 (74)
- October 2003 (101)
- September 2003 (69)
- August 2003 (98)
- July 2003 (162)
- June 2003 (71)
- May 2003 (80)
- April 2003 (65)
- March 2003 (58)
- February 2003 (24)
- January 2003 (26)
- December 2002 (21)
- November 2002 (72)
- October 2002 (66)
- September 2002 (71)
- August 2002 (43)
- July 2002 (140)
- June 2002 (96)
- May 2002 (119)
- April 2002 (97)
- March 2002 (28)
- February 2002 (20)
- January 2002 (42)
- December 2001 (55)
- November 2001 (35)
- October 2001 (25)
- September 2001 (38)
- August 2001 (50)
- July 2001 (70)
- June 2001 (60)
- May 2001 (73)
- April 2001 (57)
- March 2001 (104)
- February 2001 (60)
- January 2001 (65)
- December 2000 (79)
- November 2000 (59)
- October 2000 (39)
- September 2000 (9)
- August 2000 (16)
- July 2000 (7)
- November 1999 (2)