Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 11114 invoked from network); 24 Aug 2005 12:37:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 24 Aug 2005 12:37:03 -0000 Received: (qmail 12560 invoked by uid 500); 24 Aug 2005 12:37:03 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 12366 invoked by uid 500); 24 Aug 2005 12:37:02 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 12347 invoked by uid 99); 24 Aug 2005 12:37:01 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 24 Aug 2005 05:37:01 -0700 Received: (qmail 11059 invoked by uid 65534); 24 Aug 2005 12:37:01 -0000 Message-ID: <20050824123701.11057.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r239633 - /httpd/httpd/trunk/docs/manual/mod/mod_dbd.html.en Date: Wed, 24 Aug 2005 12:37:01 -0000 To: cvs@httpd.apache.org From: nd@apache.org X-Mailer: svnmailer-1.0.3 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: nd Date: Wed Aug 24 05:36:57 2005 New Revision: 239633 URL: http://svn.apache.org/viewcvs?rev=239633&view=rev Log: `build all` Modified: httpd/httpd/trunk/docs/manual/mod/mod_dbd.html.en Modified: httpd/httpd/trunk/docs/manual/mod/mod_dbd.html.en URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/docs/manual/mod/mod_dbd.html.en?rev=239633&r1=239632&r2=239633&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_dbd.html.en (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_dbd.html.en Wed Aug 24 05:36:57 2005 @@ -68,7 +68,7 @@
top

Apache DBD API

-

mod_dbd exports three functions for other modules +

mod_dbd exports four functions for other modules to use. The API is as follows:

typedef struct {
@@ -99,8 +99,9 @@
 /* Also export them as optional functions for modules that prefer it */
 APR_DECLARE_OPTIONAL_FN(ap_dbd_t*, ap_dbd_open, (apr_pool_t*, server_rec*));
 APR_DECLARE_OPTIONAL_FN(void, ap_dbd_close, (server_rec*, ap_dbd_t*));
-APR_DECLARE_OPTIONAL_FN(ap_dbd_t*, ap_dbd_acquire, (request_rec*));
-APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const char*));
+APR_DECLARE_OPTIONAL_FN(ap_dbd_t*, ap_dbd_acquire, (request_rec*));

+APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const char*)); +

top

SQL Prepared Statements

@@ -240,4 +241,4 @@
- + \ No newline at end of file