Update doc/efun/ aus Driversourcen.

Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.

Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/db_handles b/doc/efun/db_handles
index 99811a6..de9fa23 100644
--- a/doc/efun/db_handles
+++ b/doc/efun/db_handles
@@ -2,23 +2,24 @@
 SYNOPSIS
         int * db_handles()
 
-BESCHREIBUNG
-        Result ist ein Array mit allen aktiven Verbindungshandles zum
-        SQL-Server. Das Array ist nach der Zeit der letzten Aktion sortiert:
-        das zuletzt genutzte Handle kommt an erster Stelle. Sind keine
-        Verbindungen aktiv, ist das Array leer.
+DESCRIPTION
+        Returns an array with all open handles to the SQL-server.
+        As mySQL is most of the time limited to 100 connections, you
+        should not let this number grow too big. The handles are sorted
+        in a special order: The last used handle is the first one and
+        the handle that hasn't been used for the longest time is
+        the last one. If no handles are open, an empty array is returned.
 
-        Die Funktion ist nur verfuegbar wenn der Driver mit
-        mySQL-Unterstuetzung compiliert wurde. In diesem Fall ist das Makro
-        __MYSQL__ definiert.
+        The function is available only if the driver is compiled with
+        mySQL support. In that case, __MYSQL__ is defined.
 
-        Die Efun ist privilegiert als ("mysql", "db_handles").
+        The efun triggers a privilege violation ("mysql", "db_handles").
 
-GESCHICHTE
-        Eingefuehrt in LDMud 3.2.9.
-        LDMud 3.2.11 machte die Efun privilegiert.
+HISTORY
+        Added in 3.2.9 .
+        LDMud 3.2.11 added the privilege violation.
 
-SIEHE AUCH
+SEE ALSO
         db_affected_rows(E), db_conv_string(E), db_close(E), db_coldefs(E),
         db_connect(E), db_error(E), db_exec(E), db_fetch(E), db_insert_id(E),
         mysql(C), privilege_violation(M)