Search Discussions
-
mysql++-3.0.6 mysql-5.0.45-6.fc7 g++ 4.1.2 I have an SSQLS definition like so; sql_create_11( individual, 1, 11, mysqlpp::sql_bigint, individualID, mysqlpp::sql_char, firstName, mysqlpp::sql_char, ...
Brad Hubbard
Dec 3, 2008 at 12:23 pm
Dec 8, 2008 at 6:09 am -
I'm trying to create a SSQLS structure to represent a derived type. Consider the following: // base.h class base { int id; }; // derived.h #include "base.h" class derived : public base { std::string ...
Ryan W. Frenz
Dec 3, 2008 at 6:42 pm
Dec 8, 2008 at 9:44 pm -
Hi Warren Young: Below is a simple example I wrote. The problem is that the memory will increase all the time when executing "mysqlpp::sql_int id = obRow[0]". But the memory will be stable when only ...
Weidong shen
Dec 16, 2008 at 5:39 am
Dec 16, 2008 at 7:31 pm -
Given: 1) A MySql database server built to accept SSL connections, with its server key, server certificate, and CA certificate called 'ca.pem', have_openssel = YES, have_ssl = YES, and using a well ...
Edward Diener
Dec 20, 2008 at 3:06 am
Dec 21, 2008 at 7:50 pm -
Hi again! Another problem I ran into: I have installed all possible MySQL-Packages (RPM-Versions on SLES 10 AMD64). When I run my test program, it segfaults. And the DBG output is a little confusing. ...
Ebner Ej Johannes
Dec 17, 2008 at 9:33 am
Dec 18, 2008 at 2:04 pm -
Hi Conversion from integer types to strings in C++ streams depends on the global locale, if the locale isn't specifically set for a stream. It looks like this also affects MySQL++ Query objects (in ...
Tomaž Šolc
Dec 12, 2008 at 9:33 am
Dec 12, 2008 at 5:13 pm -
Plus-plussers: I don't know if this is really a MySQL++ question or a MySQL question. I believe there should be something I can do through MySQL++ to correct this, but I cannot find anything with ...
Rick Gutleber
Dec 19, 2008 at 11:41 pm
Dec 31, 2008 at 4:37 pm -
Hello, I am using mysql++-3.0.4. I am trying to execute a Stored Procedure which is having 151 input parameters and 1 output parameter. But MySQL++ is allowing maximum128 input parameters. I have ...
Rajesh choudhary
Dec 25, 2008 at 1:08 pm
Dec 29, 2008 at 8:43 pm -
I want to use template query like this query = "SELECT name FROM player WHERE id = %0" int id = 0x12345 result = query.store( id ) and this will throw exception. "Failed to find MySQL C API type ID ...
soryu Jeong
Dec 18, 2008 at 1:54 pm
Dec 19, 2008 at 1:17 am -
Hi out there! I am currently writing a wrapper for our MySQL database in C++ - and I'm fairly new to C++ (in fact, this is my first project ^^). So please excuse any dumb-ass things ;-) Ok, now the ...
Ebner Ej Johannes
Dec 15, 2008 at 4:04 pm
Dec 16, 2008 at 8:52 am -
How do I make a SSL connection using mysql++ ? I did not see any mention of SSL in the mysql++ documentation but maybe I just missed it. In the MySql help file, at the end of section 5.5.7.3 I read: ...
Edward Diener
Dec 13, 2008 at 10:18 pm
Dec 15, 2008 at 3:25 pm -
Hi Warren and all, Just a random thought - nested transactions are not possible in MySQL. However, local testing indicates that an attempt to begin a nested transaction doesn't fail. Personally, I'd ...
Joel Fielder
Dec 11, 2008 at 11:54 am
Dec 12, 2008 at 8:32 am -
I took the simple1 example, and im playing with it to learn how to use it. And i got it running! but... For my application, I'm using opengl, and so far it can only print text from char* I might be ...
Pavel989
Dec 18, 2008 at 5:52 am
Dec 24, 2008 at 1:30 pm -
Alex Luya
Dec 22, 2008 at 3:46 am
Dec 22, 2008 at 5:12 am -
Hi Its mentioned in the user manual: "An important limitation of the MySQL C API library - which MySQL++ is built atop, so it shares this limitation - is that you can't have two concurrent queries ...
Kartik mahajan
Dec 19, 2008 at 7:08 am
Dec 19, 2008 at 9:00 am -
I am having a bit of an issue with escaping a query. I build my query parameters in two different strings. On holds the fields and the other holds the data. Now, the issue that I have is the data may ...
R ottmanj
Dec 11, 2008 at 11:23 pm
Dec 12, 2008 at 2:13 am -
I am using FreeBSD 5.2.1 and gcc 3.3.3 today I downloaded MySQL++ 3.0.8 and tried to compile, but it cannot compile. compile error message is below. g++ -c -o mysqlpp_connection.o -I. -fPIC -DPIC ...
soryu Jeong
Dec 11, 2008 at 11:54 am
Dec 12, 2008 at 2:04 am -
Hey all. I'm really new to MySQL, and MYSQL++ even more so (plan to change that). anyways, i followed the directions best i can, using visual studio, and rebake. i edited the correct file, because im ...
Pavel989
Dec 8, 2008 at 6:34 am
Dec 9, 2008 at 9:42 am -
The documentation for the TCPConnection constructor says the first parameter, addr, "may be followed by a colon and a port number or service name to override default port." To what does the "service ...
Edward Diener
Dec 6, 2008 at 5:18 am
Dec 6, 2008 at 11:21 am -
Hi All, How do I limit to one Connection per thread? I am using the ConnectionPool class and I like it. But I would also like to limit the number of grab and release in my thread to one. With the ...
Jay Rajput
Dec 5, 2008 at 9:38 pm
Dec 5, 2008 at 10:26 pm -
I am new to the mysql++ api, and I have run into a few problems with trying to compile the exmaple simple1. The main issue that I see at this point has to do with my linking. I have modeled my ...
R ottmanj
Dec 2, 2008 at 9:12 pm
Dec 3, 2008 at 9:39 am -
I have a few questions about the parameters for SslOption/mysql_ssl_set ( C++/C ) and about SSL in general between the server and the client. I do understand what a certificate, a private key, and a ...
Edward Diener
Dec 18, 2008 at 12:12 pm
Dec 18, 2008 at 12:12 pm -
I have a few questions about the parameters for SslOption and about SSL in general between the server and the client. I do understand what a certificate, a private key, and a public key is in ...
Edward Diener
Dec 17, 2008 at 2:59 am
Dec 17, 2008 at 2:59 am -
Hi All, Does template queries made your code complex or I am not making the proper use of them? I am looking for more examples of template queries. Are there other libraries or languages which ...
Jay Rajput
Dec 8, 2008 at 3:56 pm
Dec 8, 2008 at 3:56 pm
Group Overview
group | plusplus |
categories | mysql |
discussions | 24 |
posts | 87 |
users | 22 |
website | mysql.com |
irc | #mysql |
22 users for December 2008
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)