You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bo...@apache.org on 2006/06/04 06:46:43 UTC

svn commit: r411514 - /apr/apr-util/branches/1.2.x/include/apr_dbd.h

Author: bojan
Date: Sat Jun  3 21:46:42 2006
New Revision: 411514

URL: http://svn.apache.org/viewvc?rev=411514&view=rev
Log:
Backport r411513 from trunk to 1.2.x branch.
Original message: Document new connection key/value pairs for MySQL driver.

Modified:
    apr/apr-util/branches/1.2.x/include/apr_dbd.h

Modified: apr/apr-util/branches/1.2.x/include/apr_dbd.h
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.2.x/include/apr_dbd.h?rev=411514&r1=411513&r2=411514&view=diff
==============================================================================
--- apr/apr-util/branches/1.2.x/include/apr_dbd.h (original)
+++ apr/apr-util/branches/1.2.x/include/apr_dbd.h Sat Jun  3 21:46:42 2006
@@ -79,9 +79,12 @@
  *  function as a filename to be opened (check SQLite3 documentation for more
  *  details).
  *  @remarks MySQL: the params can have "host", "port", "user", "pass",
- *  "dbname" and "sock" keys, each followed by an equal sign and a value.
- *  Such key/value pairs can be delimited by space, CR, LF, tab, semicolon,
- *  vertical bar or comma.
+ *  "dbname", "sock", "flags" and "fldsz" keys, each followed by an equal sign
+ *  and a value. Such key/value pairs can be delimited by space, CR, LF, tab,
+ *  semicolon, vertical bar or comma. For now, "flags" can only recognise
+ *  CLIENT_FOUND_ROWS (check MySQL manual for details). The value associated
+ *  with "fldsz" determines maximum amount of memory (in bytes) for each of
+ *  the fields in the result set. By default, this value is 1 MB.
  */
 APU_DECLARE(apr_status_t) apr_dbd_open(const apr_dbd_driver_t *driver,
                                        apr_pool_t *pool, const char *params,