• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/docs/gsg_db_rep/JAVA/
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml">
4  <head>
5    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6    <title>Preface</title>
7    <link rel="stylesheet" href="gettingStarted.css" type="text/css" />
8    <meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
9    <link rel="start" href="index.html" title="Getting Started with Replicated Berkeley DB Applications" />
10    <link rel="up" href="index.html" title="Getting Started with Replicated Berkeley DB Applications" />
11    <link rel="prev" href="index.html" title="Getting Started with Replicated Berkeley DB Applications" />
12    <link rel="next" href="introduction.html" title="Chapter��1.��Introduction" />
13  </head>
14  <body>
15    <div class="navheader">
16      <table width="100%" summary="Navigation header">
17        <tr>
18          <th colspan="3" align="center">Preface</th>
19        </tr>
20        <tr>
21          <td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a>��</td>
22          <th width="60%" align="center">��</th>
23          <td width="20%" align="right">��<a accesskey="n" href="introduction.html">Next</a></td>
24        </tr>
25      </table>
26      <hr />
27    </div>
28    <div class="preface" lang="en" xml:lang="en">
29      <div class="titlepage">
30        <div>
31          <div>
32            <h2 class="title"><a id="preface"></a>Preface</h2>
33          </div>
34        </div>
35      </div>
36      <div class="toc">
37        <p>
38          <b>Table of Contents</b>
39        </p>
40        <dl>
41          <dt>
42            <span class="sect1">
43              <a href="preface.html#conventions">Conventions Used in this Book</a>
44            </span>
45          </dt>
46          <dd>
47            <dl>
48              <dt>
49                <span class="sect2">
50                  <a href="preface.html#moreinfo">For More Information</a>
51                </span>
52              </dt>
53            </dl>
54          </dd>
55        </dl>
56      </div>
57      <p>
58        This document describes how to write replicated Berkeley DB applications for Berkeley DB version 4.8.
59        The APIs used to implement replication in your application 
60        are described here. This book describes the concepts surrounding replication, the scenarios under which you
61        might choose to use it, and the architectural requirements that a replication application has over a
62        transactional application.
63    </p>
64      <p>
65        This book is aimed at the software engineer responsible for writing a
66        replicated DB application.
67    </p>
68      <p>
69        This book assumes that you have already read and understood the
70        concepts contained in the
71        <span><em class="citetitle">Berkeley DB Getting Started with Transaction Processing</em> guide.</span>
72        
73     </p>
74      <div class="sect1" lang="en" xml:lang="en">
75        <div class="titlepage">
76          <div>
77            <div>
78              <h2 class="title" style="clear: both"><a id="conventions"></a>Conventions Used in this Book</h2>
79            </div>
80          </div>
81        </div>
82        <div class="toc">
83          <dl>
84            <dt>
85              <span class="sect2">
86                <a href="preface.html#moreinfo">For More Information</a>
87              </span>
88            </dt>
89          </dl>
90        </div>
91        <p>
92        The following typographical conventions are used within in this manual:
93    </p>
94        <p>
95        Class names are represented in <code class="classname">monospaced font</code>, as are <code class="methodname">method
96        names</code>. For example: 
97        
98        <span>"The <code class="methodname">Environment()</code>
99        constructor returns an <code class="classname">Environment</code> class object."</span>
100
101        
102    </p>
103        <p>
104        Variable or non-literal text is presented in <span class="emphasis"><em>italics</em></span>. For example: "Go to your
105        <span class="emphasis"><em>DB_INSTALL</em></span> directory."
106    </p>
107        <p>
108        Program examples are displayed in a <code class="classname">monospaced font</code> on a shaded background.
109        For example:
110    </p>
111        <pre class="programlisting">import com.sleepycat.db.DatabaseConfig;
112
113...
114
115// Allow the database to be created.
116DatabaseConfig myDbConfig = new DatabaseConfig();
117myDbConfig.setAllowCreate(true);</pre>
118        <p>
119        In some situations, programming examples are updated from one chapter to the next. When
120        this occurs, the new code is presented in <strong class="userinput"><code>monospaced bold</code></strong> font. For example:
121    </p>
122        <pre class="programlisting"><strong class="userinput"><code>import com.sleepycat.db.Database;</code></strong>
123import com.sleepycat.db.DatabaseConfig;
124
125...
126
127// Allow the database to be created.
128DatabaseConfig myDbConfig = new DatabaseConfig();
129myDbConfig.setAllowCreate(true);
130<strong class="userinput"><code>Database myDb = new Database("mydb.db", null, myDbConfig);</code></strong> </pre>
131        <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
132          <h3 class="title">Note</h3>
133          <p>
134            Finally, notes of special interest are represented using a note block such
135            as this.
136        </p>
137        </div>
138        <div class="sect2" lang="en" xml:lang="en">
139          <div class="titlepage">
140            <div>
141              <div>
142                <h3 class="title"><a id="moreinfo"></a>For More Information</h3>
143              </div>
144            </div>
145          </div>
146          <p>
147            Beyond this manual, you may also find the following sources of information useful when building a
148            transactional DB application:
149        </p>
150          <div class="itemizedlist">
151            <ul type="disc">
152              <li>
153                <p>
154                     
155                     
156                    <a class="ulink" href="http://www.oracle.com/technology/documentation/berkeley-db/db/gsg_txn/JAVA/index.html" target="_top">
157                         Getting Started with Transaction Processing for Java
158                    </a> 
159
160
161                     
162                     
163                </p>
164              </li>
165              <li>
166                <p>
167                     
168                     
169                    <a class="ulink" href="http://www.oracle.com/technology/documentation/berkeley-db/db/gsg/JAVA/index.html" target="_top">
170                        Getting Started with Berkeley DB for Java
171                    </a> 
172
173
174
175                     
176                     
177                </p>
178              </li>
179              <li>
180                <p>
181                    
182
183                    <a class="ulink" href="http://www.oracle.com/technology/documentation/berkeley-db/db/collections/tutorial/index.html" target="_top">
184                            Berkeley DB Collections Tutorial
185                    </a>
186                    </p>
187              </li>
188              <li>
189                <p>
190                    <a class="ulink" href="http://www.oracle.com/technology/documentation/berkeley-db/db/programmer_reference/index.html" target="_top">
191                        Berkeley DB Programmer's Reference Guide
192                    </a>
193                </p>
194              </li>
195              <li>
196                <p>
197                    <span>
198                    
199                    
200                    </span>
201
202                    
203
204                    <a class="ulink" href="http://www.oracle.com/technology/documentation/berkeley-db/db/java/index.html" target="_top">
205                        Berkeley DB Javadoc
206                    </a>
207                </p>
208              </li>
209            </ul>
210          </div>
211        </div>
212      </div>
213    </div>
214    <div class="navfooter">
215      <hr />
216      <table width="100%" summary="Navigation footer">
217        <tr>
218          <td width="40%" align="left"><a accesskey="p" href="index.html">Prev</a>��</td>
219          <td width="20%" align="center">��</td>
220          <td width="40%" align="right">��<a accesskey="n" href="introduction.html">Next</a></td>
221        </tr>
222        <tr>
223          <td width="40%" align="left" valign="top">Getting Started with Replicated Berkeley DB Applications��</td>
224          <td width="20%" align="center">
225            <a accesskey="h" href="index.html">Home</a>
226          </td>
227          <td width="40%" align="right" valign="top">��Chapter��1.��Introduction</td>
228        </tr>
229      </table>
230    </div>
231  </body>
232</html>
233