From f94eaece500c232da96f6c73fd8d2acf9e029d29 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Malo?= Date: Sun, 30 Oct 2005 08:50:49 +0000 Subject: [PATCH] update transformation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@329543 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_authn_dbd.html.en | 34 +++++------ docs/manual/mod/mod_dbd.html.en | 82 +++++++++++++-------------- 2 files changed, 58 insertions(+), 58 deletions(-) diff --git a/docs/manual/mod/mod_authn_dbd.html.en b/docs/manual/mod/mod_authn_dbd.html.en index 5754780ce2a..73390616c6b 100644 --- a/docs/manual/mod/mod_authn_dbd.html.en +++ b/docs/manual/mod/mod_authn_dbd.html.en @@ -1,21 +1,21 @@ - mod_authn_dbd - Apache HTTP Server - - - - + + + + -
<-
+ +
<-
Apache > HTTP Server > Documentation > Version 2.1 > Modules
@@ -47,12 +47,12 @@

Directives

Topics

See also

-
top
+
top
-

Configuration Example

+

Configuration Example

This simple example shows use of this module in the context of the Authentication and DBD frameworks.

@@ -104,8 +104,8 @@ DBDExptime 60 </Directory>
-
top
-

AuthDBDUserPWQuery Directive

+
top
+

AuthDBDUserPWQuery Directive

@@ -125,8 +125,8 @@ DBDExptime 60 -
top
-
Description:SQL query to look up a password for a user
Syntax:AuthDBDUserPWQuery query
@@ -154,4 +154,4 @@ DBDExptime 60 - + \ No newline at end of file diff --git a/docs/manual/mod/mod_dbd.html.en b/docs/manual/mod/mod_dbd.html.en index 0813c373fb9..8c4b9a1f2fe 100644 --- a/docs/manual/mod/mod_dbd.html.en +++ b/docs/manual/mod/mod_dbd.html.en @@ -1,21 +1,21 @@ -mod_dbd - Apache HTTP Server - - - - + + + + -
<-
+ +
<-
@@ -39,24 +39,24 @@
-
top
+
top
-

Connection Pooling

+

Connection Pooling

This module manages database connections, in a manner optimised for the platform. On non-threaded platforms, it provides a persistent connection in the manner of @@ -65,9 +65,9 @@ scalable and efficient connection pool, as described in this article at ApacheTutor. mod_dbd supersedes the modules presented in that article.

-
top
+
top
-

Apache DBD API

+

Apache DBD API

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

@@ -108,9 +108,9 @@ APR_DECLARE_OPTIONAL_FN(ap_dbd_t*, ap_dbd_acquire, (request_rec*)); APR_DECLARE_OPTIONAL_FN(ap_dbd_t*, ap_dbd_cacquire, (conn_rec*)); APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const char*));
-
top
+
top
-

SQL Prepared Statements

+

SQL Prepared Statements

mod_dbd supports SQL prepared statements on behalf of modules that may wish to use them. Each prepared statement must be assigned a name (label), and they are stored in a hash: @@ -123,8 +123,8 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const c and document what statements can be specified in httpd.conf, or to provide their own directives and use ap_dbd_prepare.

-
top
-
Description:SQL query to look up a password hash for a user and realm.
@@ -137,8 +137,8 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const c platforms only).

-
top
-
Description:Keepalive time for idle connections
Syntax:DBDExptime time-in-seconds
@@ -151,8 +151,8 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const c platforms only).

-
top
-
Description:Maximum sustainednumber of connections
Syntax:DBDKeep number
@@ -164,8 +164,8 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const c (threaded platforms only).

-
top
-
Description:Maximum number of connections
Syntax:DBDMax number
@@ -177,8 +177,8 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const c platforms only).

-
top
-
Description:Minimum number of connections
Syntax:DBDMin number
Description:Parameters for database connection
Syntax:DBDParams @@ -192,8 +192,8 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const c password, database name, hostname and port number for connection.

-
top
-

DBDPersist Directive

+
top
+

DBDPersist Directive

@@ -211,8 +211,8 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const c non-threaded server), and should almost always be used in operation.

-
top
-
Description:Whether to use persistent connections
Syntax:DBDPersist 0|1
@@ -226,8 +226,8 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const c This directive prepares an SQL statement and assigns it a label.

-
top
-
Description:Define an SQL prepared statement
Syntax:DBDPrepareSQL "SQL statement" label
@@ -247,4 +247,4 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const c - + \ No newline at end of file -- 2.47.2
Description:Specify an SQL driver
Syntax:DBDriver name