Search Discussions
-
Hi, I am working on a program to do analysis of data from the Wikipedia (http://wikipedia.org) database using MySQL++. The program reads a very large result (up to several gigabytes) from the ...
Byrial Jensen
May 23, 2005 at 10:01 pm
May 26, 2005 at 5:14 am -
Im trying to use the equal_list() method and passing a vector to it. such as in the example from the manual... //////////////////////// The vector form (not shown above) allows you to pass a boolean ...
Mark Merendino
May 3, 2005 at 9:17 pm
May 11, 2005 at 9:08 pm -
I'm trying to work with mysql 4.1.10 , mac OS 10.3.9 and mysql++1.7.35. The installation seemed to go correctly once I told it where to find mysql (installed by Fink). But... The examples crash at ...
Shaun Roe
May 10, 2005 at 12:25 pm
May 10, 2005 at 4:54 pm -
Hi, Below is a patch that contains a couple suggested documentation changes, as well as an explanation of how the type system works in type_info.{h,cpp}. The documentation describes what I was able ...
Chris Frey
May 11, 2005 at 6:58 am
May 18, 2005 at 8:28 pm -
Hy there, just trying to compile the mysql++-1.7.35 with the following error: source='custom1.cpp' object='custom1.o' libtool=no \ depfile='.deps/custom1.Po' tmpdepfile='.deps/custom1.TPo' \ ...
Benjamin Montua
May 23, 2005 at 11:27 am
May 24, 2005 at 6:55 am -
Hi, The type conversion operator to std::string in mysql_dt_base (datetime.h) should be declared const. Otherwise it leads to compilation bugs with SSQL's that have a field of Date type which is also ...
Wolfram Arnold
May 11, 2005 at 9:13 am
May 23, 2005 at 3:09 pm -
Hi, When a Row object is constructed, it will copy all data of the fetched row of type MYSQL_ROW to a vector of std::string. That seems to me as unnecessary use of time and memory. The row data is ...
Byrial Jensen
May 29, 2005 at 5:28 pm
Jul 8, 2005 at 9:08 am -
Noticed this in the diffs from 1.7.34 to 1.7.35, in the Wishlist: @@ -103,7 +114,8 @@ also floating point precision item in previous section. o Attribution and licensing needs attention. Note LGPL at ...
Chris Frey
May 11, 2005 at 5:27 am
May 12, 2005 at 5:43 am -
This is a monster release! Most of it's documentation, but there's a fair bit of functional change, too: o Multiple item form of insert() now works if you're using the SQLQuery class, or its ...
Warren Young
May 27, 2005 at 6:03 pm
Jun 1, 2005 at 1:27 pm -
Hello everyone. Using latest mysql++ and MySQL 5.0.4 Windows XP, VisualStudio .NET 2003, utilizing Windows Forms. Able to connect to mysql only with empty params: mysqlpp::Connection con(true); bool ...
Tim Shor
May 10, 2005 at 6:06 pm
May 16, 2005 at 2:18 pm -
I often store booleans (MySQL type BOOL, alias for TINYINT(1)). So it would be very nice to have an automatic conversion from ColData to bool so I in my programs can write someting like: Row row = ...
Byrial Jensen
May 29, 2005 at 5:47 pm
Jun 20, 2005 at 9:54 am -
Hi, I have visited the following site: http://dev.mysql.com/doc/plusplus/en/ I wanted to read the MySQL++ manual and found it very usefull. I am particularly interested in the example found under the ...
Eurfyl Davies
May 27, 2005 at 7:39 pm
Jun 1, 2005 at 11:39 am -
I'm a green-hand I try to run msys.bat and enter ./configure --mysql=/d/software/mysql but the error is told "checking for mysql library directory ... configure : error : Didn't find the mysql ...
Owen nirvana
May 30, 2005 at 5:31 am
Jun 1, 2005 at 11:32 am -
Hello everyone. Here is what I'm using: Windows XP Pro, Visual Studio .NET 2005 Beta 2, MySQL Server ver. 5.0.4 Beta, MySQL++ ver 1.7.35 I am trying to incorporate MySQL++ and Windows Forms from .NET ...
Tim Shor
May 24, 2005 at 11:20 am
May 24, 2005 at 9:06 pm -
Hi, May anyone tell me how to change datetime with Unix format(Mon May 02 10:09:09 2005) to ANSI SQL format(2005-05-02 10:09:09) or directly convert time_t to ANSI SQL format string. I am developing ...
Zlf
May 2, 2005 at 2:47 am
May 6, 2005 at 1:43 am -
Hi, Just started using mysql++ today for the first time. I went through the examples and they worked fine. I tried to make a generic function Result Select_From_Database ( const char* field_select, ...
Roland Sgorcea
May 30, 2005 at 11:46 am
Jun 1, 2005 at 11:35 am -
Hello everyone, I'm just trying to grab one column of information and I keep getting the exception thrown by this snippet of code in coonection.cpp if (lock()) { if (throw_excptns) { throw ...
Lance Additon
May 21, 2005 at 5:01 am
May 23, 2005 at 3:13 pm -
I'm reading through the diffs from 1.7.32 to 1.7.33 and noticed the following change in lib/query.h: @@ -11,13 +30,11 @@ #include <mysql.h #define mysql_query_define1(RETURN, FUNC) \ - RETURN FUNC () ...
Chris Frey
May 10, 2005 at 10:19 pm
May 11, 2005 at 10:24 pm -
Hi there, Some fixes here that make mysql++ compile more cleanly with the new GCC 4.0.0. I'm liking this compiler so far. Seems fast too. This fixes: - some virtual destructors for classes that have ...
Chris Frey
May 4, 2005 at 9:56 am
May 6, 2005 at 7:11 pm -
I am looking at making my private Subversion repository public somehow. Hosting this repository myself is not practical. Therefore, I've looked into the various free Subversion hosting providers. ...
Warren Young
May 4, 2005 at 8:29 pm
May 5, 2005 at 10:54 am -
Hi, I was reading the source code to figure out how iterators exactly work on Result objects, since I knew I used them before. Apparently my projects only use operator*(). Consider the following ...
Chris Frey
May 29, 2005 at 11:59 pm
Jul 8, 2005 at 9:57 am -
Hi, As a new user of mysql++, I have been surprised by the way the exception flags works. The User Manual says: The state of the object's exception enabling flag is passed down to child objects. For ...
Byrial Jensen
May 29, 2005 at 5:29 pm
Jun 20, 2005 at 9:53 am -
We are using mysql++ 1.7.32 with mysql 5.0.4. We have setup triggers on a table to envoke an external function that sends a signal to a process when the table is modified. If the table is UPDATEd ...
Bruce Keats
May 31, 2005 at 8:27 pm
May 31, 2005 at 10:44 pm -
I am trying to compile some code, and I seem to be running into a whole lot of problems. Searching with google has been fruitless. Maybe some of you might have an idea of what this means, or could ...
Ash Christopher
May 27, 2005 at 5:42 pm
May 27, 2005 at 6:05 pm -
I am trying link a static executable. I use the following on linking g++ -I/usr/include/mysql++ -I/usr/include/mysql -02 -c application.cpp g++ -I/usr/include/mysql++ -I/usr/include/mysql -02 -c ...
Willy K'
May 25, 2005 at 12:56 pm
May 25, 2005 at 1:38 pm -
Hi all, I'm a new C++ programmer and I need to make a connection to a MySQL server. I'd like to know if mysqlpp library has SSL connection support, in the source tree I've downloaded I can't find any ...
Israel Fdez. Cabrera
May 23, 2005 at 12:04 pm
May 23, 2005 at 3:33 pm -
when i build the example sample1 in visual c++ 2005 it says winsock.h not found how do i solve this? Don�t just search. Find. Check out the new MSN Search! ...
Joe waster
May 19, 2005 at 8:42 pm
May 19, 2005 at 9:03 pm -
Here's the equal_list() example based on Mark Merendino's email, split out into its own file: custom5.cpp. - Chris Index: software/mysql++/examples/Makefile.am diff -u ...
Chris Frey
May 11, 2005 at 6:28 am
May 11, 2005 at 6:53 pm -
Hi all, I am using 'mysql_config' to produce g++ argument. However execute [g++ -c testMain.cpp 'mysql_config --include'] will get an error message [mysql_config --include: No such file or ...
Zlf
May 7, 2005 at 5:07 am
May 7, 2005 at 5:11 am -
The "Cinco de Mayo" release: o Added a "how to use Unicode with MySQL++" chapter to the user manual. (Too bad "Cinco de Mayo" doesn't have any accented characters. That would be just _too_ precious.) ...
Warren Young
May 5, 2005 at 12:07 pm
May 5, 2005 at 12:19 pm -
hi all, I just wrote bunch 'C' functions that use binding capability in 4.1.11, specifically mysql_prepare, mysql_execute. I can compile them fine, but can't find the libs to link them with: ...
Jean Robichaud
May 1, 2005 at 5:55 pm
May 2, 2005 at 4:35 pm -
Hello, I've found a small buglet in coldata.h, the type() method should be const, but isn't. If you use something like row[i].type().sql_name(), you get an 'passing this...discards qualifiers' error. ...
Erwin
May 1, 2005 at 9:02 am
May 2, 2005 at 4:22 pm -
Hi, I could compile the examples only if I comment some lines. g++ doesn't like the what() call. See the message from g++: deadline.cpp: In function `int main(int, char**)': deadline.cpp:75: error: ...
Andreas Volz
May 1, 2005 at 12:15 pm
May 1, 2005 at 6:23 pm -
Minor cleanup patch for the simple example makefile. - Chris Index: software/mysql++/examples/Makefile.simple diff -u software/mysql++/examples/Makefile.simple:1.1.1.5 ...
Chris Frey
May 29, 2005 at 2:29 am
May 29, 2005 at 2:29 am -
The biggest piece in the new 1.7.40 release is the new reference manual documentation. I've spent nearly every working hour for the past 3 weeks since 1.7.35 was released adding material to the ...
Warren Young
May 27, 2005 at 6:03 pm
May 27, 2005 at 6:03 pm -
Hy there, just trying to compile the mysql++-1.7.35 with the following error: source='custom1.cpp' object='custom1.o' libtool=no \ depfile='.deps/custom1.Po' tmpdepfile='.deps/custom1.TPo' \ ...
Benjamin Montua
May 23, 2005 at 11:27 am
May 23, 2005 at 11:27 am -
In another thread, some of those of us who have been using MySQL++ the longest were shown something about MySQL++ that we didn't even know existed. Since one of the big pushes recently has been ...
Warren Young
May 11, 2005 at 6:46 pm
May 11, 2005 at 6:46 pm -
query.h is missing the template for the new mulit insert. I believe this should be added to fix the problem... template<class Iter Query& insert(Iter first, Iter last) { SQLQuery::insert(first, ...
Mark Merendino
May 5, 2005 at 6:28 pm
May 5, 2005 at 6:28 pm -
Just FYI, I will be away until Monday, and won't be checking this mail account. Be good, kids. :)
Warren Young
May 5, 2005 at 12:20 pm
May 5, 2005 at 12:20 pm
Group Overview
group | plusplus |
categories | mysql |
discussions | 39 |
posts | 154 |
users | 27 |
website | mysql.com |
irc | #mysql |
27 users for May 2005
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)