~ubuntu-branches/ubuntu/edgy/rpm/edgy

« back to all changes in this revision

Viewing changes to db/docs/ref/upgrade.3.0/db_cxx.html

  • Committer: Bazaar Package Importer
  • Author(s): Joey Hess
  • Date: 2002-01-22 20:56:57 UTC
  • Revision ID: james.westby@ubuntu.com-20020122205657-l74j50mr9z8ofcl5
Tags: upstream-4.0.3
ImportĀ upstreamĀ versionĀ 4.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--$Id: db_cxx.so,v 11.9 2000/03/22 22:02:14 bostic Exp $-->
 
2
<!--Copyright 1997-2001 by Sleepycat Software, Inc.-->
 
3
<!--All rights reserved.-->
 
4
<html>
 
5
<head>
 
6
<title>Berkeley DB Reference Guide: Release 3.0: the Db class for C++ and Java</title>
 
7
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
 
8
<meta name="keywords" content="embedded,database,programmatic,toolkit,b+tree,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,java,C,C++">
 
9
</head>
 
10
<body bgcolor=white>
 
11
<table width="100%"><tr valign=top>
 
12
<td><h3><dl><dt>Berkeley DB Reference Guide:<dd>Upgrading Berkeley DB Applications</dl></h3></td>
 
13
<td align=right><a href="../../ref/upgrade.3.0/dbenv_cxx.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../../reftoc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../../ref/upgrade.3.0/cxx.html"><img src="../../images/next.gif" alt="Next"></a>
 
14
</td></tr></table>
 
15
<p>
 
16
<h1 align=center>Release 3.0: the Db class for C++ and Java</h1>
 
17
<p>The static Db::open method and the DbInfo class have been removed in the
 
18
Berkeley DB 3.0 release.  The way to open a database file is to use the new Db
 
19
constructor with two arguments, followed by set_XXX methods to configure
 
20
the Db object, and finally a call to the new (nonstatic) Db::open().  In
 
21
comparing the Berkeley DB 3.0 release open method with the 2.X static open
 
22
method, the second argument is new.  It is a database name, which can
 
23
be null.  The DbEnv argument has been removed, as the environment is now
 
24
specified in the constructor.  The open method no longer returns a Db,
 
25
since it operates on one.
 
26
<p>Here's a C++ example opening a Berkeley DB database using the 2.X interface:
 
27
<p><blockquote><pre>// Note: by default, errors are thrown as exceptions
 
28
Db *table;
 
29
Db::open("lookup.db", DB_BTREE, DB_CREATE, 0644, dbenv, 0, &table);</pre></blockquote>
 
30
<p>In the Berkeley DB 3.0 release, this code would be written as:
 
31
<p><blockquote><pre>// Note: by default, errors are thrown as exceptions
 
32
Db *table = new Db(dbenv, 0);
 
33
table-&gt;open("lookup.db", NULL, DB_BTREE, DB_CREATE, 0644);</pre></blockquote>
 
34
<p>Here's a Java example opening a Berkeley DB database using the 2.X interface:
 
35
<p><blockquote><pre>// Note: errors are thrown as exceptions
 
36
Db table = Db.open("lookup.db", Db.DB_BTREE, Db.DB_CREATE, 0644, dbenv, 0);</pre></blockquote>
 
37
<p>In the Berkeley DB 3.0 release, this code would be written as:
 
38
<p><blockquote><pre>// Note: errors are thrown as exceptions
 
39
Db table = new Db(dbenv, 0);
 
40
table.open("lookup.db", null, Db.DB_BTREE, Db.DB_CREATE, 0644);</pre></blockquote>
 
41
<p>Note that if the dbenv argument is  null, the database will not exist
 
42
within an environment.
 
43
<table width="100%"><tr><td><br></td><td align=right><a href="../../ref/upgrade.3.0/dbenv_cxx.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../../reftoc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../../ref/upgrade.3.0/cxx.html"><img src="../../images/next.gif" alt="Next"></a>
 
44
</td></tr></table>
 
45
<p><font size=1><a href="http://www.sleepycat.com">Copyright Sleepycat Software</a></font>
 
46
</body>
 
47
</html>