Search Discussions
-
Hi, My app was building and running without using SSQLS, but seeing the simplicity and extra functionality they afford, I moved to SSQLS. Unfortunately, this generates a string of linker errors now, ...
Simon Pickles
Dec 12, 2007 at 10:17 pm
May 23, 2012 at 4:45 pm -
Below is the rest of it... 5) The simple main function 6) gdb run with backtrace 5) Code: #include <iostream #include <string #include <mysql++.h using namespace std; using namespace mysqlpp; int ...
Graham Reitz
Dec 4, 2007 at 3:26 am
Jan 10, 2008 at 4:08 am -
Got the following table: cpp code connection & query stuff ... ... ... mysqlpp::longlong id = (mysqlpp::longlong)row["id"]; mysqlpp::Date invoice_date = (mysqlpp::Date)row["invoice_date"]; double ...
Bart Verstraete
Dec 23, 2007 at 8:19 am
Jan 5, 2008 at 2:49 pm -
I know you'll hate me for this. I blame my own inexperience and ignorance for having to ask this here, but I can't figure out how to link to mysql++ library. I emerged mysql++ on my Gentoo system. I ...
Michael Sullivan
Dec 2, 2007 at 3:28 pm
Dec 3, 2007 at 3:09 pm -
There are some problems with ConnectionPool: 1) in grab(), if the first unused connection found is older than max_idle_time and there are no newer connections, it will be returned to the user. This ...
Jonathan Wakely
Dec 22, 2007 at 4:08 pm
Jan 3, 2008 at 7:06 pm -
Hi! Having a bit of a problem with linking version 2.3.2 of mysql++. I'm using Eclipse on os X 10.4 dual G5. I get: g++ -I"/Users/joehudson/Documents/workspace/Wendy/src" -O0 -g3 -Wall -c ...
Joe Hudson
Dec 1, 2007 at 12:26 am
Dec 7, 2007 at 10:39 pm -
Hello I am running windows vista, but the problem also occurs on windows xp. I can compile mysql++ programs just fine, however whenever I attempt to connect to my server using this line of code ...
Brian Dawn
Dec 22, 2007 at 12:03 am
Dec 26, 2007 at 9:31 pm -
Should bootstrap be patched like so? This is an example of what you can get with the current script: $ ./bootstrap + bakefilize ./bootstrap: line 47: bakefilize: command not found + bakefile -f gnu ...
Jonathan Wakely
Dec 15, 2007 at 7:21 pm
Dec 28, 2007 at 8:54 pm -
The debug build still seg faults on the Query destructor. I thought I would try a release build and received the following linker warnings: ld: warning in /sw/lib/mysql/libmysqlclient_r.dylib, file ...
Graham Reitz
Dec 1, 2007 at 6:18 am
Dec 3, 2007 at 1:54 pm -
This one was caught by GCC's debug mode. I don't fully understand these parts of the library yet, but it seems that this sql_type_info initializer on line 81 of type_info.cpp: sql_type_info("NULL NOT ...
Jonathan Wakely
Dec 27, 2007 at 11:09 pm
Jan 3, 2008 at 6:09 pm -
Hi, I just "finnished" a project on winXP & visual 2005 (c++ / mfc dll) using mysql++, and I have now to switch my work to WinCE5.0. All my functionnality have been ported succesfuly to wince, but ...
Bastien
Dec 12, 2007 at 9:10 am
Dec 12, 2007 at 1:34 pm -
I had a strange issue that I eventually tracked down to a mismatch between the number of columns included in the results of a select query and the number of columns my SSQLS structure expected. My ...
Drew M.
Dec 7, 2007 at 7:47 am
Dec 11, 2007 at 3:58 am -
Hello, What is the cause of a "lock failed" mysqlpp exception, and what is the best approach for dealing with it? It only happens occasionally. I am currently just using a try/catch to field it, and ...
Simon Pickles
Dec 29, 2007 at 9:37 am
Dec 31, 2007 at 5:47 pm -
Hi, Does mysql++ support embedded server? if so,what's the steps?
王颖明
Dec 27, 2007 at 4:26 pm
Dec 28, 2007 at 7:02 pm -
Hey all, I am sort of new to C++ (as in i read "Teach Yourself C++ in 21 days) and even newer to MySQL. I have had reasonable success working with the stock MySQL C API but it is rather clunky and I ...
Jms295
Dec 3, 2007 at 4:49 pm
Dec 3, 2007 at 7:09 pm -
I just reinstalled VC++ 2003 on my main Windows development box to test MySQL++ v3 with it, and found that the Null<T for SSQLS feature causes an internal compiler error. I'd rather not spending time ...
Warren Young
Dec 31, 2007 at 7:26 pm
Jan 1, 2008 at 3:31 am -
I see there's now only one warning when configured in pedantic mode and compiling with GCC: /lib/query.cpp: In copy constructor 'mysqlpp::Query::Query(const mysqlpp::Query&)': ./lib/query.cpp:53: ...
Jonathan Wakely
Dec 29, 2007 at 2:48 pm
Dec 31, 2007 at 1:11 pm -
this cleans up a lot of easily-avoided warnings with gcc -Wall Jon
Jonathan Wakely
Dec 27, 2007 at 11:44 pm
Dec 28, 2007 at 7:23 am -
This might be too late for 3.0 but I think it's a worthwhile simpification. This patch replaces RefCountedBuffer with RefCountedPointer<Buffer , where Buffer just holds an array of chars, a type and ...
Jonathan Wakely
Dec 22, 2007 at 3:53 pm
Dec 27, 2007 at 1:37 am -
Hello, I need help with MySQL C API to read ~/.my.cnf config options. I have a problem. connect2.c doesn't use client login info provided in ~/.my.cnf file? What would cause it to use ...
Joe shoemaker
Dec 20, 2007 at 3:03 pm
Dec 20, 2007 at 8:44 pm -
I'm trying to download the latest libraries for mysql++. I'm having intermittent success getting to the web server at tangentsoft.net. My browser usually gives me a timeout. I have tried a couple of ...
Gary Anderson
Dec 17, 2007 at 8:48 pm
Dec 17, 2007 at 9:22 pm -
valgrind reports this memory leak, ==10279== 43 (16 direct, 27 indirect) bytes in 1 blocks are definitely lost in loss record 3 of 4 ==10279== at 0x4A06205: operator new(unsigned long) ...
Jonathan Wakely
Dec 16, 2007 at 12:51 am
Dec 17, 2007 at 6:42 pm -
Here's my code: [email protected] ourrpg $ nl gameengine.h 1 #ifndef GAMEENGINE_H 2 #define GAMEENGINE_H 3 4 #include <mysql++.h 5 6 using namespace mysqlpp; 7 class GameEngine 8 { 9 public: 10 ...
Michael Sullivan
Dec 2, 2007 at 8:33 pm
Dec 3, 2007 at 12:42 pm -
It seems appropriate to me that I'm making this release on the first day past the Winter solstice: from here on, things will be getting brighter around here. :) It's been a bit of a slog, but here it ...
Warren Young
Dec 22, 2007 at 3:18 pm
Dec 22, 2007 at 3:18 pm -
I am looking for a good C++ example of a simple MySQL client program written in C++ and runs on Linux, using MySQL++ libraries that does the following (no threading): Accessing Option File Contents, ...
Joe shoemaker
Dec 21, 2007 at 10:19 am
Dec 21, 2007 at 10:19 am -
There is no config-win.h in MySQL++. No change you make to it will affect MySQL++.
Warren Young
Dec 21, 2007 at 2:14 am
Dec 21, 2007 at 2:14 am -
This is driving me nuts. The release build works like a champ, and the debug version crashes and burns. (Same issue that I have been posting about). I am also using the exact same mysql and mysql ...
Graham Reitz
Dec 4, 2007 at 3:23 am
Dec 4, 2007 at 3:23 am
Group Overview
group | plusplus |
categories | mysql |
discussions | 27 |
posts | 127 |
users | 22 |
website | mysql.com |
irc | #mysql |
22 users for December 2007
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)