Sophie

Sophie

distrib > Mageia > 3 > i586 > by-pkgid > 0699fb90d9745ad7ed1b15348c479e5d > files > 1058

libdb4.8-devel-4.8.30-10.mga3.i586.rpm

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>open_env</title>
    <link rel="stylesheet" href="apiReference.css" type="text/css" />
    <meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
    <link rel="start" href="index.html" title="Berkeley DB C++ Standard Template Library API Reference" />
    <link rel="up" href="dbstl_global_functions.html" title="Chapter 1.  Dbstl Global Public Functions" />
    <link rel="prev" href="stldbstl_global_functionsopen_db.html" title="open_db" />
    <link rel="next" href="stldbstl_global_functionsalloc_mutex.html" title="alloc_mutex" />
  </head>
  <body>
    <div class="navheader">
      <table width="100%" summary="Navigation header">
        <tr>
          <th colspan="3" align="center">
open_env
</th>
        </tr>
        <tr>
          <td width="20%" align="left"><a accesskey="p" href="stldbstl_global_functionsopen_db.html">Prev</a> </td>
          <th width="60%" align="center">Chapter 1. 
 Dbstl Global Public Functions  </th>
          <td width="20%" align="right"> <a accesskey="n" href="stldbstl_global_functionsalloc_mutex.html">Next</a></td>
        </tr>
      </table>
      <hr />
    </div>
    <div class="sect1" lang="en" xml:lang="en">
      <div class="titlepage">
        <div>
          <div>
            <h2 class="title" style="clear: both"><a id="stldbstl_global_functionsopen_env"></a>
open_env
</h2>
          </div>
        </div>
      </div>
      <div class="sect2" lang="en" xml:lang="en">
        <div class="titlepage">
          <div>
            <div>
              <h3 class="title"><a id="func_details"></a>
Function Details</h3>
            </div>
          </div>
        </div>
        <pre class="programlisting">
 DbEnv* open_env(const char *env_home, u_int32_t set_flags,
    u_int32_t oflags=DB_CREATE|DB_INIT_MPOOL, u_int32_t cachesize=4 *1024 *1024,
    int mode=0644,
    u_int32_t cflags=0)
 </pre>
        <div class="sect3" lang="en" xml:lang="en">
          <div class="titlepage"></div>
          <p>Helper function to open an environment and register it into dbstl for the calling thread. </p>
          <p>Users still need to register it in any other thread if it is shared by multiple threads, via <a class="link" href="stldbstl_global_functionsregister_db_env.html" title="register_db_env">register_db_env()</a>
 function above. Users don't need to delete or free the memory of the returned object, dbstl will take care of that.</p>
          <p>When you don't use <a class="link" href="stldbstl_global_functionsopen_env.html" title="open_env">dbstl::open_env()</a>
 but explicitly call DB C++ API to open an environment, you must new the DbEnv object, rather than create it on stack, and you must delete the DbEnv object by yourself. </p>
        </div>
        <div class="sect3" lang="en" xml:lang="en">
          <div class="titlepage">
            <div>
              <div>
                <h4 class="title"><a id="id1543179"></a>
Parameters</h4>
              </div>
            </div>
          </div>
          <div class="sect4" lang="en" xml:lang="en">
            <div class="titlepage">
              <div>
                <div>
                  <h5 class="title"><a id="id1542999"></a>
 oflags </h5>
                </div>
              </div>
            </div>
            <p>Environment open flags, passed to DbEnv::open. </p>
          </div>
          <div class="sect4" lang="en" xml:lang="en">
            <div class="titlepage">
              <div>
                <div>
                  <h5 class="title"><a id="id1542532"></a>
 set_flags </h5>
                </div>
              </div>
            </div>
            <p>Flags to set to the created environment before opening it. </p>
          </div>
          <div class="sect4" lang="en" xml:lang="en">
            <div class="titlepage">
              <div>
                <div>
                  <h5 class="title"><a id="id1543037"></a>
 mode </h5>
                </div>
              </div>
            </div>
            <p>Environment region files mode, passed to DbEnv::open. </p>
          </div>
          <div class="sect4" lang="en" xml:lang="en">
            <div class="titlepage">
              <div>
                <div>
                  <h5 class="title"><a id="id1542303"></a>
 cflags </h5>
                </div>
              </div>
            </div>
            <p>DbEnv constructor creation flags, passed to DbEnv::DbEnv. </p>
          </div>
          <div class="sect4" lang="en" xml:lang="en">
            <div class="titlepage">
              <div>
                <div>
                  <h5 class="title"><a id="id1543261"></a>
 cachesize </h5>
                </div>
              </div>
            </div>
            <p>Environment cache size, by default 4M bytes. </p>
          </div>
          <div class="sect4" lang="en" xml:lang="en">
            <div class="titlepage">
              <div>
                <div>
                  <h5 class="title"><a id="id1541001"></a>
 env_home </h5>
                </div>
              </div>
            </div>
            <p>Environment home directory, it must exist. Passed to DbEnv::open. </p>
          </div>
        </div>
        <div class="sect3" lang="en" xml:lang="en">
          <div class="titlepage">
            <div>
              <div>
                <h4 class="title"><a id="id1543262"></a>
Return Value</h4>
              </div>
            </div>
          </div>
          <p>The opened database environment handle. </p>
        </div>
        <div class="sect3" lang="en" xml:lang="en">
          <div class="titlepage">
            <div>
              <div>
                <h4 class="title"><a id="id1543277"></a>
See Also</h4>
              </div>
            </div>
          </div>
          <p>
    </p>
          <p><a class="link" href="stldbstl_global_functionsregister_db_env.html" title="register_db_env">register_db_env(DbEnv *)</a>
; </p>
          <p><a class="link" href="stldbstl_global_functionsopen_db.html" title="open_db">open_db</a>
; </p>
          <p>   </p>
        </div>
      </div>
      <div class="sect2" lang="en" xml:lang="en">
        <div class="titlepage">
          <div>
            <div>
              <h3 class="title"><a id="id1543305"></a>
Class</h3>
            </div>
          </div>
        </div>
        <p>
  <a class="link" href="dbstl_global_functions.html" title="Chapter 1.  Dbstl Global Public Functions">
  dbstl_global_functions</a>
     </p>
      </div>
    </div>
    <div class="navfooter">
      <hr />
      <table width="100%" summary="Navigation footer">
        <tr>
          <td width="40%" align="left"><a accesskey="p" href="stldbstl_global_functionsopen_db.html">Prev</a> </td>
          <td width="20%" align="center">
            <a accesskey="u" href="dbstl_global_functions.html">Up</a>
          </td>
          <td width="40%" align="right"> <a accesskey="n" href="stldbstl_global_functionsalloc_mutex.html">Next</a></td>
        </tr>
        <tr>
          <td width="40%" align="left" valign="top">
open_db
 </td>
          <td width="20%" align="center">
            <a accesskey="h" href="index.html">Home</a>
          </td>
          <td width="40%" align="right" valign="top"> 
alloc_mutex
</td>
        </tr>
      </table>
    </div>
  </body>
</html>