libdb/docs/installation/build_android_config.html

120 lines
4.9 KiB
HTML
Raw Normal View History

2011-09-13 17:44:24 +00:00
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2012-11-14 21:35:20 +00:00
<title>Android Configuration Options</title>
2011-09-13 17:44:24 +00:00
<link rel="stylesheet" href="gettingStarted.css" type="text/css" />
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
<link rel="start" href="index.html" title="Berkeley DB Installation and Build Guide" />
<link rel="up" href="build_android_intro.html" title="Chapter 4. Building Berkeley DB for Android" />
2012-11-14 21:35:20 +00:00
<link rel="prev" href="build_android_jdbc.html" title="Building the Android JDBC Driver" />
2011-09-13 17:44:24 +00:00
<link rel="next" href="build_win.html" title="Chapter 5.  Building Berkeley DB for Windows" />
</head>
<body>
<div xmlns="" class="navheader">
<div class="libver">
2012-11-14 21:35:20 +00:00
<p>Library Version 11.2.5.3</p>
2011-09-13 17:44:24 +00:00
</div>
<table width="100%" summary="Navigation header">
<tr>
2012-11-14 21:35:20 +00:00
<th colspan="3" align="center">Android Configuration Options</th>
2011-09-13 17:44:24 +00:00
</tr>
<tr>
2012-11-14 21:35:20 +00:00
<td width="20%" align="left"><a accesskey="p" href="build_android_jdbc.html">Prev</a> </td>
2011-09-13 17:44:24 +00:00
<th width="60%" align="center">Chapter 4. Building Berkeley DB for Android</th>
<td width="20%" align="right"> <a accesskey="n" href="build_win.html">Next</a></td>
</tr>
</table>
<hr />
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
2012-11-14 21:35:20 +00:00
<h2 class="title" style="clear: both"><a id="build_android_config"></a>Android Configuration Options</h2>
2011-09-13 17:44:24 +00:00
</div>
</div>
</div>
<p>There are several configuration options you can specify in <code class="literal">LOCAL_CFLAGS</code> located in the <code class="literal">Android.mk</code> file. </p>
<div class="itemizedlist">
<ul type="disc">
<li>
<p>
BDBSQL_CONVERT_SQLITE
</p>
<p>
This option enables to convert SQLite database to BDB SQL database format. See <a class="xref" href="build_android_intro.html#build_android_migrate" title="Migrating from SQLite to Berkeley DB">Migrating from SQLite to Berkeley DB</a>
for more information.
</p>
</li>
<li>
<p>
BDBSQL_SHARE_PRIVATE
</p>
<p>
This flag is enabled by default and keeps all the region files in
memory instead of the disk.
This flag also implements database-level locking.
</p>
</li>
<li>
<p>
SQLITE_DEFAULT_CACHE_SIZE
</p>
<p>
SQLite provides an in-memory cache which you size according to the maximum number of
database pages that you want to hold in memory at any given time.
See <a class="xref" href="build_unix_sql.html#config_sql" title="Changing Compile Options">Changing Compile Options</a>.
</p>
</li>
<li>
<p>
SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT
</p>
<p>
For SQLite, this pragma identifies the maximum size that the journal file is allowed
to be. Berkeley DB does not have a journal file, but it writes and uses log files. A new log file is
created when the current log file has reached the defined maximum size.
This flag defines this maximum size for a log file. Default value is 10 MB for Berkeley DB SQL interface.
</p>
</li>
</ul>
</div>
<p>
Hard-coded numbers in the build can be adjusted using the following SQLite PRAGMA commands: </p>
<div class="itemizedlist">
<ul type="disc">
<li>PRAGMA cache_size</li>
<li>PRAGMA journal_size_limit</li>
</ul>
</div>
<p>
You can configure most aspects of your Berkeley DB environment by using the <a href="../api_reference/C/configuration_reference.html" class="olink">DB_CONFIG</a> file.
</p>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
2012-11-14 21:35:20 +00:00
<td width="40%" align="left"><a accesskey="p" href="build_android_jdbc.html">Prev</a> </td>
2011-09-13 17:44:24 +00:00
<td width="20%" align="center">
<a accesskey="u" href="build_android_intro.html">Up</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="build_win.html">Next</a></td>
</tr>
<tr>
2012-11-14 21:35:20 +00:00
<td width="40%" align="left" valign="top">Building the Android JDBC Driver </td>
2011-09-13 17:44:24 +00:00
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> Chapter 5. 
Building Berkeley DB for Windows
</td>
</tr>
</table>
</div>
</body>
</html>