You can subscribe to this list here.
2002 |
Jan
(11) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(19) |
Aug
|
Sep
(1) |
Oct
(2) |
Nov
(12) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
(2) |
Mar
(3) |
Apr
|
May
(6) |
Jun
(2) |
Jul
|
Aug
(36) |
Sep
(12) |
Oct
(3) |
Nov
|
Dec
|
2004 |
Jan
(3) |
Feb
|
Mar
|
Apr
(4) |
May
(11) |
Jun
|
Jul
|
Aug
(5) |
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(11) |
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2003-08-06 10:26:44
|
Patches item #784077, was opened at 2003-08-06 10:26 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=784077&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jonathan Wakely (redi) Assigned to: Nobody/Anonymous (nobody) Summary: Missing return value from Connection::operator= Initial Comment: The assignment operator for the Connection class does not return any value, although it's declared to return Connection&. This patch makes it return *this. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=784077&group_id=7869 |
From: SourceForge.net <no...@so...> - 2003-08-06 09:17:30
|
Patches item #784042, was opened at 2003-08-06 09:17 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=784042&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jonathan Wakely (redi) Assigned to: Nobody/Anonymous (nobody) Summary: Remove redundant scope qualifier. Initial Comment: This patch removes the redundant (and possibly illegal?) "Query::" qualifier from the declaration of Query::storein_set(). The declaration in the class body should not have the class name prefixed (looks like a cut'n'paste error from the definition). This caused an Internal Compiler Error in the experimental GCC 3.4. The patch includes a ChangeLog entry, which doesn't include the change I suggested in patch 783628, so might not apply cleanly if that has already been applied. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=784042&group_id=7869 |
From: SourceForge.net <no...@so...> - 2003-08-05 16:56:01
|
Patches item #783628, was opened at 2003-08-05 16:56 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=783628&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jonathan Wakely (redi) Assigned to: Nobody/Anonymous (nobody) Summary: Qualify dependent names Initial Comment: This patch adds explicit qualifications to two member function calls, where the member functions in question are inherited from a dependent base class (one that depends on a template parameter). Specifically, the calls to T_Str::size() and T_Str::c_str() from within the scope of ColData_Generic<T_Str> are dependent on the template parameter T_Str, so must be qualified with "this->" or "T_Str::". This patch uses the latter option. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=783628&group_id=7869 |
From: SourceForge.net <no...@so...> - 2003-05-06 21:52:42
|
Patches item #733537, was opened at 2003-05-06 14:52 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=733537&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Josh Benton (bort) Assigned to: Nobody/Anonymous (nobody) Summary: Fixes compilation errors in Connection.cc Initial Comment: Fixes the following error: Connection.cc: In member function `std::string mysqlcppapi::Connection::get_client_info()': Connection.cc:191: invalid conversion from `const char*' to `char*' Connection.cc: In member function `virtual std::string mysqlcppapi::Connection::info()': Connection.cc:327: invalid conversion from `const char*' to `char*' It just adds const_cast<char*>() to those 2 lines. Attached is a diff file. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=733537&group_id=7869 |
From: SourceForge.net <no...@so...> - 2003-02-18 21:11:35
|
Bugs item #689033, was opened at 2003-02-18 13:19 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=107869&aid=689033&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Problem with "ar" in make smartpointer (Mac OS X Jaguar 10.2 Initial Comment: Problem with "ar" when $make ing in Mac OS X Jaguar (10.2), I'm sort of new to make and all of that, so I couldnt even find where ar is called, look: [alumina:~/Desktop/mysqlcppapi-1.9.2] pipo% make /bin/sh ./config.status --recheck running /bin/sh ./configure --with-mysql=/usr/local --no-create --no-recursion make all-recursive Making all in mysqlcppapi Making all in datetime make[3]: Nothing to be done for `all'. Making all in exceptions make[3]: Nothing to be done for `all'. Making all in fields make[3]: Nothing to be done for `all'. Making all in query make[3]: Nothing to be done for `all'. Making all in query_results make[3]: Nothing to be done for `all'. Making all in row make[3]: Nothing to be done for `all'. Making all in smartpointer /bin/sh ../../libtool --mode=link gcc -g -O2 -o libsmartpointer.la rm -fr .libs/libsmartpointer.la .libs/libsmartpointer.* .libs/libsmartpointer.* ar cru .libs/libsmartpointer.al ar: no archive members specified usage: ar -d [-TLsv] archive file ... ar -m [-TLsv] archive file ... ar -m [-abiTLsv] position archive file ... ar -p [-TLsv] archive [file ...] ar -q [-cTLsv] archive file ... ar -r [-cuTLsv] archive file ... ar -r [-abciuTLsv] position archive file ... ar -t [-TLsv] archive [file ...] ar -x [-ouTLsv] archive [file ...] make[3]: *** [libsmartpointer.la] Error 1 make[2]: *** [all-recursive] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 [alumina:~/Desktop/mysqlcppapi-1.9.2] pipo% ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=107869&aid=689033&group_id=7869 |
From: <no...@so...> - 2002-11-12 15:00:19
|
Bugs item #637156, was opened at 2002-11-12 09:00 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=107869&aid=637156&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bryan W. Headley (bheadley) Assigned to: Nobody/Anonymous (nobody) Summary: 1.91 does not compile with gcc 2.95.4 Initial Comment: We get compilation errors, to wit, c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -g -O2 -I/usr/mysql/include -I/usr/m ysql/include -Wp,-MD,.deps/Fields.pp -c Fields.cc -fPIC -DPIC -o .libs/Fields. lo In file included from ../query_results/../row/Row.h:6, from ../query_results/Result_Use.h:5, from Fields.cc:2: ../query_results/../row/../const_subscript_container.h:55: no class template nam ed `iterator' in `std' ../query_results/../row/../const_subscript_container.h:57: ANSI C++ forbids decl aration `iterator' with no type ../query_results/../row/../const_subscript_container.h:57: template-id `iterator <random_access_iterator_tag, ReturnType, typename OnType::size_type>' used as a declarator ../query_results/../row/../const_subscript_container.h:57: parse error before `; ' ../query_results/../row/../const_subscript_container.h: In method `class mysqlcp papi::subscript_iterator<OnType,ReturnType> & mysqlcppapi::subscript_iterator<On Type,ReturnType>::operator =(const mysqlcppapi::subscript_iterator<OnType,Return Type> &)': ../query_results/../row/../const_subscript_container.h:82: parse error before `: :' ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=107869&aid=637156&group_id=7869 |
From: <no...@so...> - 2002-11-02 22:41:40
|
Patches item #632733, was opened at 2002-11-02 16:38 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=632733&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bryan W. Headley (bheadley) Assigned to: Nobody/Anonymous (nobody) Summary: Changelog, autoconf enhancements Initial Comment: Here are the changelog updates promised. Rewritten of course. Also am sending my autoconfiscate changes, which introduces an m4 script other projects linking against yours can use. Keeps the maintenance of their configure.in manageable, insofar as when a new m4 configure script is dropped by you, they need only copy it into their 'macro' directory Also a little 'API' class, which grew out of my need for version id of the library being known at runtime. Yes, I could have used the C-ish ints in 'default' namespace, but that's just bad, bad, bad, bad. ---------------------------------------------------------------------- >Comment By: Bryan W. Headley (bheadley) Date: 2002-11-02 16:41 Message: Logged In: YES user_id=135585 See # 632734 for the patch. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=632733&group_id=7869 |
From: <no...@so...> - 2002-11-02 22:41:02
|
Patches item #632734, was opened at 2002-11-02 16:39 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=632734&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bryan W. Headley (bheadley) Assigned to: Nobody/Anonymous (nobody) Summary: Dumb thing escaped being sent again Initial Comment: Little checkbox. Check the little checkbox. As opposed to checking if there's a NULL STRING in the "upload filename" field... Sigh. ---------------------------------------------------------------------- >Comment By: Bryan W. Headley (bheadley) Date: 2002-11-02 16:41 Message: Logged In: YES user_id=135585 Hah! And with a name like 'drool', you see how I lost the LAST patch file. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=632734&group_id=7869 |
From: <no...@so...> - 2002-11-02 22:39:47
|
Patches item #632734, was opened at 2002-11-02 16:39 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=632734&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bryan W. Headley (bheadley) Assigned to: Nobody/Anonymous (nobody) Summary: Dumb thing escaped being sent again Initial Comment: Little checkbox. Check the little checkbox. As opposed to checking if there's a NULL STRING in the "upload filename" field... Sigh. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=632734&group_id=7869 |
From: <no...@so...> - 2002-11-02 22:38:03
|
Patches item #632733, was opened at 2002-11-02 16:38 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=632733&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bryan W. Headley (bheadley) Assigned to: Nobody/Anonymous (nobody) Summary: Changelog, autoconf enhancements Initial Comment: Here are the changelog updates promised. Rewritten of course. Also am sending my autoconfiscate changes, which introduces an m4 script other projects linking against yours can use. Keeps the maintenance of their configure.in manageable, insofar as when a new m4 configure script is dropped by you, they need only copy it into their 'macro' directory Also a little 'API' class, which grew out of my need for version id of the library being known at runtime. Yes, I could have used the C-ish ints in 'default' namespace, but that's just bad, bad, bad, bad. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=632733&group_id=7869 |
From: <no...@so...> - 2002-10-24 00:10:02
|
Patches item #627849, was opened at 2002-10-23 19:10 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=627849&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bryan W. Headley (bheadley) Assigned to: Nobody/Anonymous (nobody) Summary: ChangeLog details Initial Comment: ChangeLog enhanced to explain differences to mysqlcppapi to 10/21/2002 patches submitted by Bryan W. Headley ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=627849&group_id=7869 |
From: <no...@so...> - 2002-07-03 09:43:55
|
Patches item #576852, was opened at 2002-07-03 17:43 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=576852&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Mathieu Legrand (mathieu_legrand) Assigned to: Nobody/Anonymous (nobody) Summary: gcc-3 ALL fixes in one patch (#1+#2+#3) Initial Comment: Allow mysqlcppapi compilation with gcc-3. This removes all compilation errors, but leaves all warnings :). - add: 'using namespace std' - fix iterators (add 'std::' and <backward/iterator.h>) - fix minor problem in Connection.h The iterators fixes might cause problems with gcc-2, it should be enclosed into a #ifdef #endif block. The patch is against today CVS. Mathieu. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=576852&group_id=7869 |
From: <no...@so...> - 2002-07-03 09:38:43
|
Patches item #576849, was opened at 2002-07-03 17:38 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=576849&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Mathieu Legrand (mathieu_legrand) Assigned to: Nobody/Anonymous (nobody) Summary: gcc-3 fixes #3: Connection.h minor fix Initial Comment: Fix a minor linkage error with gcc-3 in Connection.h. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=576849&group_id=7869 |
From: <no...@so...> - 2002-07-03 09:32:12
|
Patches item #576845, was opened at 2002-07-03 17:32 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=576845&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Mathieu Legrand (mathieu_legrand) Assigned to: Nobody/Anonymous (nobody) Summary: gcc-3 fixes #2: iterator fixes Initial Comment: Fixes const_subscript_container.h iterator problems. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=576845&group_id=7869 |
From: <no...@so...> - 2002-07-03 08:05:27
|
Patches item #576816, was opened at 2002-07-03 16:05 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=576816&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Mathieu Legrand (mathieu_legrand) Assigned to: Nobody/Anonymous (nobody) Summary: preliminary gcc-3 fixes Initial Comment: Add: - 'using namespace std;' everywhere (this is too strong, will make it better later) - fix overloaded destructors: 'throw()' This doesn't allow you to compile mysqlcppapi with gcc-3 yet. But it reduces the number of compilation errors. I will release a second patch later to fix the remaining problems. To apply: cd mysqlcppapi/mysqlcppapi patch -p1 < mysqlcppapi-gcc3.1 The patch was generated against today CVS snapshot. Mathieu. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=307869&aid=576816&group_id=7869 |
From: <no...@so...> - 2002-01-28 08:07:58
|
Patches item #509452, was opened at 2002-01-28 00:07 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=307869&aid=509452&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bert van Leeuwen (bertvl) Assigned to: Nobody/Anonymous (nobody) Summary: Prevent segfault calling Result::size() Initial Comment: Prevent segfault calling Result::size() with an undefined mysql_result set. Throws an exception if use_exceptions, otherwise returns 0. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=307869&aid=509452&group_id=7869 |
From: <no...@so...> - 2002-01-25 12:15:05
|
Bugs item #508414, was opened at 2002-01-25 04:15 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=107869&aid=508414&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: segfault when calling Result::size() Initial Comment: Doing this (however wrong it might be): Result res; cout << res.size()<<endl; causes a segfault. i.e. calling size() on res for any reason before you've got a result in there. Would be nice if it rather returned 0 or threw an exception than segfaulted. --- Bert van Leeuwen ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=107869&aid=508414&group_id=7869 |
From: <no...@so...> - 2002-01-18 16:06:59
|
Bugs item #505425, was opened at 2002-01-18 08:06 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=107869&aid=505425&group_id=7869 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Unable to compile library Initial Comment: Hi, I'm trying to install the mysqlcppapi. Passed the configure stage with no problem. An error occurs while compilig : make all-recursive make[1]: Entering directory `/tmp/rpm/mysqlcppapi-1.7.5' Making all in mysqlcppapi make[2]: Entering directory `/tmp/rpm/mysqlcppapi-1.7.5/mysqlcppapi' Making all in datetime make[3]: Entering directory `/tmp/rpm/mysqlcppapi-1.7.5/mysqlcppapi/datetime' /bin/sh ../../libtool --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -g -O2 -I/usr/local/mysql/include -I/usr/local/mysql/include -c Date.cc mkdir .libs g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -g -O2 -I/usr/local/mysql/include -I/usr/local/mysql/include -c Date.cc -fPIC -DPIC -o .libs/Date.lo In file included from date_base.h:4, from Date.h:5, from Date.cc:1: datetime_base.h:20: ISO C++ forbids declaration of `ostream' with no type datetime_base.h:20: `ostream' declared as a `virtual' field datetime_base.h:20: parse error before `&' token datetime_base.h:22: syntax error before `(' token datetime_base.h:25: parse error before `(' token datetime_base.h:25: syntax error before `(' token datetime_base.h:31: `struct mysqlcppapi::datetime_base::DTbase' does not declare a template type datetime_base.h:34: invalid use of `virtual' in template declaration of `virtual short int mysqlcppapi::datetime_base::DTbase::compare(const T&) const' datetime_base.h: In member function `bool mysqlcppapi::datetime_base::DTbase::operator==(const T&) const': datetime_base.h:37: parse error before `;' token For information g++ -v gives : Reading specs from /usr/lib/gcc-lib/i586-mandrake-linux-gnu/3.0.2/specs Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --enable-long-long --enable-cstdio=stdio --enable-clocale=generic --enable-languages=c,c++,f77,objc,java --program-suffix=-3.0.2 --enable-objc-gc --host=i586-mandrake-linux-gnu Thread model: posix gcc version 3.0.2 For more information, please contact me at : mat...@tr... M.D. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=107869&aid=505425&group_id=7869 |