<p>For Btree database statistics, the <ahref="../api_reference/C/dbstat.html"class="olink">DB->stat()</a> method field
<spanclass="bold"><strong>bt_nrecs</strong></span> has been removed, replaced by two fields:
<spanclass="bold"><strong>bt_nkeys</strong></span> and <spanclass="bold"><strong>bt_ndata</strong></span>. The <spanclass="bold"><strong>bt_nkeys</strong></span> field returns
a count of the unique keys in the database. The <spanclass="bold"><strong>bt_ndata</strong></span> field
returns a count of the key/data pairs in the database. Neither exactly
matches the previous value of the <spanclass="bold"><strong>bt_nrecs</strong></span> field, which returned
a count of keys in the database, but, in the case of Btree databases,
could overcount as it sometimes counted duplicate data items as unique
keys. The application should be searched for any uses of the
<spanclass="bold"><strong>bt_nrecs</strong></span> field and the field should be changed to be either
<spanclass="bold"><strong>bt_nkeys</strong></span> or <spanclass="bold"><strong>bt_ndata</strong></span>, whichever is more appropriate.</p>
<p>For Hash database statistics, the <ahref="../api_reference/C/dbstat.html"class="olink">DB->stat()</a> method field
<spanclass="bold"><strong>hash_nrecs</strong></span> has been removed, replaced by two fields:
<spanclass="bold"><strong>hash_nkeys</strong></span> and <spanclass="bold"><strong>hash_ndata</strong></span>. The <spanclass="bold"><strong>hash_nkeys</strong></span> field
returns a count of the unique keys in the database. The
<spanclass="bold"><strong>hash_ndata</strong></span> field returns a count of the key/data pairs in the
database. The new <spanclass="bold"><strong>hash_nkeys</strong></span> field exactly matches the previous
value of the <spanclass="bold"><strong>hash_nrecs</strong></span> field. The application should be
searched for any uses of the <spanclass="bold"><strong>hash_nrecs</strong></span> field, and the field
should be changed to be <spanclass="bold"><strong>hash_nkeys</strong></span>.</p>
<p>For Queue database statistics, the <ahref="../api_reference/C/dbstat.html"class="olink">DB->stat()</a> method field
<spanclass="bold"><strong>qs_nrecs</strong></span> has been removed, replaced by two fields:
<spanclass="bold"><strong>qs_nkeys</strong></span> and <spanclass="bold"><strong>qs_ndata</strong></span>. The <spanclass="bold"><strong>qs_nkeys</strong></span> field returns
a count of the unique keys in the database. The <spanclass="bold"><strong>qs_ndata</strong></span> field
returns a count of the key/data pairs in the database. The new
<spanclass="bold"><strong>qs_nkeys</strong></span> field exactly matches the previous value of the
<spanclass="bold"><strong>qs_nrecs</strong></span> field. The application should be searched for any uses
of the <spanclass="bold"><strong>qs_nrecs</strong></span> field, and the field should be changed to be