1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<! "@(#)intro.so 10.7 (Sleepycat) 10/20/98">
<!Copyright 1997, 1998 by Sleepycat Software, Inc. All rights reserved.>
<html>
<body bgcolor=white>
<head>
<title>Berkeley DB Reference Guide: Simple Tutorial</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,b+tree,btr
ee,hash,hashing,transaction,transactions,locking,logging,access method,access me
thods,java,C,C++">
</head>
<h3>Berkeley DB Reference Guide: Simple Tutorial</h3>
<p>
<h1 align=center>Introduction</h1>
<p>
As an introduction to Berkeley DB, we will present a simple database application.
This database application will:
<ul type=disc>
<li><a href="open.html#startcode">create a simple database</a>
<li><a href="put.html#startcode">store items</a>
<li><a href="get.html#startcode">retrieve items</a>
<li><a href="del.html#startcode">remove items</a>
<li><a href="close.html#startcode">close the database</a>
</ul>
<p>
The introduction will be presented using the programming language C.
<p>
The complete source of the final version of the example program is
<a href="example.txt">here</a>.
<p>
<a href="../../ref/intro/do.html"><img src="../../images/prev.gif"></a>
<a href="../../ref/toc.html"><img src="../../images/toc.gif"></a>
<a href="../../ref/simple_tut/keydata.html"><img src="../../images/next.gif"></a>
</tt>
</body>
</html>
|