Author: wyoung
Date: Sat Mar 11 06:49:14 2006
New Revision: 1250

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1250&view=rev
Log:
v2.1.0alpha4

Modified:
    branches/v2.1-bakefile/ChangeLog
    branches/v2.1-bakefile/configure.ac

Modified: branches/v2.1-bakefile/ChangeLog
URL: 
http://svn.gna.org/viewcvs/mysqlpp/branches/v2.1-bakefile/ChangeLog?rev=1250&r1=1249&r2=1250&view=diff
==============================================================================
--- branches/v2.1-bakefile/ChangeLog (original)
+++ branches/v2.1-bakefile/ChangeLog Sat Mar 11 06:49:14 2006
@@ -1,7 +1,34 @@
-2.1.0.alpha3, 2006.03.04 (not yet released)
+2.1.0.alpha4, 2006.03.10 (not yet released)
 
        o Converted automake and makemake files to their equivalents in
          Bakefile format.
+
+       o Added the Transaction class, which makes it easy to use
+         transaction sets in MySQL++.
+
+       o Added xaction example to test new Transaction class.
+
+       o Resetdb example now creates its example table using the
+         InnoDB storage engine, in order to test the new transaction
+         support.  Resetdb also declares the table as using UTF-8
+         text; this doesn't change anything, but it does correctly
+         document what we're doing.
+
+       o Added sql_types.h header, containing C++ typedefs
+         corresponding to each MySQL column type.  Using those new
+         types in the type_info module, and in the SSQLS examples.
+
+       o Replaced the way we were handling the template query
+         version of Query member functions, to allow an arbitrary
+         number of template query parameters.  By default, we
+         now support 25 parameters, up from the old limit of 12.
+         It's now possible to change just one number, run a script,
+         and have a new limit.
+
+       o Connection class does a better job of returning error
+         messages if you call certain member functions that depend
+         on a connection to the server before the connection is
+         established.
 
        o Updated libmysqlclient.def for newer versions of MySQL.  (Fixes
          build errors having to do with mysql_more_results() and
@@ -24,6 +51,12 @@
          getting multiple static member definition errors.  See the
          documentation for details.  Thanks for this patch go to
          Viktor Stark.
+
+       o Moved the definition of the 'stock' SSQLS out of the
+         custom*.cpp example files and into a new stock.h file.
+         Also, #including that file in the util module to test out
+         the new SSQLS multiple static definition fix.
+
 
 
 2.0.7, 2005.11.23 (r1147)

Modified: branches/v2.1-bakefile/configure.ac
URL: 
http://svn.gna.org/viewcvs/mysqlpp/branches/v2.1-bakefile/configure.ac?rev=1250&r1=1249&r2=1250&view=diff
==============================================================================
--- branches/v2.1-bakefile/configure.ac (original)
+++ branches/v2.1-bakefile/configure.ac Sat Mar 11 06:49:14 2006
@@ -14,7 +14,7 @@
 # USA
 
 # Standard autotools stuff
-AC_INIT(mysql++, 2.1.0.alpha3, [EMAIL PROTECTED], mysql++)
+AC_INIT(mysql++, 2.1.0.alpha4, [EMAIL PROTECTED], mysql++)
 AC_CONFIG_HEADER(config.h)
 AC_DISABLE_STATIC
 AC_CANONICAL_SYSTEM


_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits

Reply via email to