<p>The db_value_set function has been removed from the Berkeley DB 3.0 release,
replaced by method calls on the <ahref="../api_reference/C/env.html"class="olink">DB_ENV</a> handle.</p>
<p>The following table lists the db_value_set arguments previously used by
applications and the function that should now be used instead.</p>
<divclass="informaltable">
<tableborder="1"width="80%">
<colgroup>
<col/>
<col/>
</colgroup>
<thead>
<tr>
<th>db_value_set argument</th>
<th>Berkeley DB 3.X method</th>
</tr>
</thead>
<tbody>
<tr>
<td>DB_MUTEX_LOCKS</td>
<td>dbenv_set_mutexlocks</td>
</tr>
<tr>
<td>DB_REGION_ANON</td>
<td>The DB_REGION_ANON functionality has
been replaced by the <ahref="../api_reference/C/envopen.html#envopen_DB_SYSTEM_MEM"class="olink">DB_SYSTEM_MEM</a> and <ahref="../api_reference/C/envopen.html#envopen_DB_PRIVATE"class="olink">DB_PRIVATE</a> flags
to the <ahref="../api_reference/C/envopen.html"class="olink">DB_ENV->open()</a> function. A direct translation is not
available, please review the <ahref="../api_reference/C/envopen.html"class="olink">DB_ENV->open()</a> manual page for more
information.</td>
</tr>
<tr>
<td>DB_REGION_INIT</td>
<td>dbenv_set_region_init</td>
</tr>
<tr>
<td>DB_REGION_NAME</td>
<td>The DB_REGION_NAME functionality has
been replaced by the <ahref="../api_reference/C/envopen.html#envopen_DB_SYSTEM_MEM"class="olink">DB_SYSTEM_MEM</a> and <ahref="../api_reference/C/envopen.html#envopen_DB_PRIVATE"class="olink">DB_PRIVATE</a> flags
to the <ahref="../api_reference/C/envopen.html"class="olink">DB_ENV->open()</a> function. A direct translation is not
available, please review the <ahref="../api_reference/C/envopen.html"class="olink">DB_ENV->open()</a> manual page for more