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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
<?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" />
<title>Getting and Installing BDB SQL</title>
<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="Getting Started with the Oracle Berkeley DB SQL APIs" />
<link rel="up" href="dbsqlbasics.html" title="Chapter 1. Berkeley DB SQL: The Absolute Basics" />
<link rel="prev" href="dbsqlbasics.html" title="Chapter 1. Berkeley DB SQL: The Absolute Basics" />
<link rel="next" href="accessing_bdb_sql_databases.title.html" title="Accessing BDB SQL Databases" />
</head>
<body>
<div xmlns="" class="navheader">
<div class="libver">
<p>Library Version 11.2.5.3</p>
</div>
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">Getting and Installing BDB SQL</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="dbsqlbasics.html">Prev</a> </td>
<th width="60%" align="center">Chapter 1. Berkeley DB SQL: The Absolute Basics</th>
<td width="20%" align="right"> <a accesskey="n" href="accessing_bdb_sql_databases.title.html">Next</a></td>
</tr>
</table>
<hr />
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="buildinstall"></a>Getting and Installing BDB SQL</h2>
</div>
</div>
</div>
<div class="toc">
<dl>
<dt>
<span class="sect2">
<a href="buildinstall.html#onwin">On Windows Systems</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="buildinstall.html#onunix">On Unix</a>
</span>
</dt>
<dt>
<span class="sect2">
<a href="buildinstall.html#ado_net">The BDB SQL ADO.NET Interface</a>
</span>
</dt>
</dl>
</div>
<p>
The BDB SQL interface comes as a part of the Oracle Berkeley DB
download. This can be downloaded from the
<a class="ulink" href="http://www.oracle.com/technetwork/database/berkeleydb/downloads/index.html" target="_top">Oracle Berkeley DB download page</a>.
</p>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="onwin"></a>On Windows Systems</h3>
</div>
</div>
</div>
<p>
The BDB SQL interface is automatically built and installed
whenever you build or install Berkeley DB for a Windows
system. The BDB SQL interface <code class="literal">dll</code>s and the
command line interpreter have names that differ from a
standard SQLite distribution as follows:
</p>
<div class="itemizedlist">
<ul type="disc">
<li>
<p>
<code class="literal">dbsql.exe</code>
</p>
<p>
This is the command line shell. It operates
identically to the SQLite
<span class="command"><strong>sqlite3.exe</strong></span> shell.
</p>
</li>
<li>
<p>
<code class="literal">libdb_sql50.dll</code>
</p>
<p>
This is the library that provides the BDB SQL interface.
It is the equivalent of the SQLite
<code class="literal">sqlite3.dll</code> library.
</p>
</li>
</ul>
</div>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="onunix"></a>On Unix</h3>
</div>
</div>
</div>
<p>
In order to build the BDB SQL interface, you download and build
Berkeley DB, configuring it so that the BDB SQL interface is also built.
Be aware that it is not built by default. Instead, you
need to tell the Berkeley DB <code class="literal">configure</code>
script to also build the BDB SQL interface. For instructions on
building the BDB SQL interface, see <a href="../installation/build_unix.html#build_unix_sqlinter" class="olink">Building the DB SQL Interface</a> in the
<em class="citetitle">Berkeley DB Installation and Build Guide</em>.
</p>
<p>
The library and application names used when building
the BDB SQL interface are different than those used by SQLite.
If you want library and command shell names that are
consistent with the names used by SQLite, configure
the BDB SQL interface build using the compatibility
(<code class="literal">--enable-sql_compat</code>) option.
</p>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p>
The compatibility option can break other
applications on your platform that rely on standard
SQLite. This is especially true of Mac OS X, which
uses standard SQLite for a number of default
applications.
</p>
<p>
<span class="emphasis"><em>
Use the compatibility option only if you know
exactly what you are doing.
</em></span>
</p>
</div>
<p>
Unless you built the BDB SQL interface with the compatibility
option, libraries and a command line shell
are built with the following names:
</p>
<div class="itemizedlist">
<ul type="disc">
<li>
<p>
<a href="../api_reference/C/dbsql.html" class="olink">dbsql</a>
</p>
<p>
This is the command line shell. It operates
identically to the SQLite
<span class="command"><strong>sqlite3</strong></span> shell.
</p>
</li>
<li>
<p>
<code class="literal">libdb_sql</code>
</p>
<p>
This is the library that provides the BDB SQL interface.
It is the equivalent of the SQLite
<code class="literal">libsqlite3</code> library.
</p>
</li>
</ul>
</div>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="ado_net"></a>The BDB SQL ADO.NET Interface</h3>
</div>
</div>
</div>
<p>
Download the ADO.NET package from the
<a class="ulink" href="http://www.oracle.com/technetwork/database/berkeleydb/downloads/index.html" target="_top">Oracle Berkeley DB download page</a>.
</p>
<div class="sect3" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h4 class="title"><a id="ado_prereqs"></a>Prerequisites For Building The ADO.NET Package</h4>
</div>
</div>
</div>
<div class="itemizedlist">
<ul type="disc">
<li>
To build the Linq package, you will need to install
<code class="literal">Microsoft .NET Framework 3.5 SP1</code>.
</li>
<li>
To build SQLite.Designer, you will need to install the
<code class="literal">Microsoft Visual Studio SDK</code>.
</li>
<li>
To build on Windows Mobile you will need to install the
<code class="literal">Microsoft Windows Mobile 6.5.3 Developer Tool Kit (DTK)</code>.
</li>
<li>
To build on Windows Mobile you will need to use Visual
Studio 2008.
</li>
</ul>
</div>
</div>
<div class="sect3" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h4 class="title"><a id="ado_build_steps"></a>Building BDB SQL ADO.NET Interface For Windows</h4>
</div>
</div>
</div>
<div class="itemizedlist">
<ul type="disc">
<li>
<p>
The package contains Visual Studio solution files:
</p>
<div class="itemizedlist">
<ul type="circle">
<li>
<p>
<code class="literal">SQLite.NET.2008.sln</code>
and
<code class="literal">SQLite.NET.2010.sln</code>
</p>
<p>
For use by with Visual Studio 2008
or 2010. Note that these solution
files do not build support for Linq
or SQLite Designer.
</p>
</li>
<li>
<p>
<code class="literal">SQLite.NET.2008.MSBuild.sln</code>
and
<code class="literal">SQLite.NET.2010.MSBuild.sln</code>
</p>
<p>
For use with MSBuild (Microsoft
Build Engine). These can also be
used with Visual Studio. These
solutions exclude SQLite Designer
and CompactFramework. By default,
these do not build support for
Linq.
</p>
</li>
</ul>
</div>
</li>
<li>
Change the current platform target to
<code class="literal">ReleaseNativeOnly</code> choose either
<code class="literal">Win32</code> or <code class="literal">x64</code>
depending on your target platform.
</li>
<li>
Build the solution.
</li>
</ul>
</div>
</div>
<div class="sect3" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h4 class="title"><a id="ado_build_steps_ce"></a>
Building BDB SQL ADO.NET Interface For Windows Mobile
</h4>
</div>
</div>
</div>
<p>
Building BDB SQL ADO.NET for Windows Mobile
requires Windows Mobile 6.5.3 Professional DTK.
Typical requirements for installing this toolkit
are:
</p>
<div class="itemizedlist">
<ul type="disc">
<li>
<p>
Visual Studio 2005 SP1 or Later
</p>
</li>
<li>
<p>
ActiveSync 4.5
</p>
</li>
<li>
<p>
.NET CompactFramework 2.0 SP1
</p>
</li>
<li>
<p>
Windows Mobile 6 SDK
</p>
</li>
</ul>
</div>
<p>
To build BDB SQL ADO.NET for Windows Mobile, do
the following:
</p>
<div class="itemizedlist">
<ul type="disc">
<li>
Open the <code class="literal">SQLite.NET.2008.WinCE.sln</code>
solution file in Visual Studio 2008.
</li>
<li>
Select <code class="literal">Load Project Normally</code></li>
<li>
Change the current platform to <code class="literal">ReleaseNativeOnly</code>.
</li>
<li>
Select <code class="literal">Configuration Manager</code>-><code class="literal">new</code>,
then type or select the platform
<code class="literal">Windows Mobile 6.5.3 Professional DTK (ARMV4I)</code>.
Choose to copy settings from
<code class="literal">Pocket PC 2003 (ARMV4I)</code></li>
<li>
Build the solution.
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="dbsqlbasics.html">Prev</a> </td>
<td width="20%" align="center">
<a accesskey="u" href="dbsqlbasics.html">Up</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="accessing_bdb_sql_databases.title.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Chapter 1. Berkeley DB SQL: The Absolute Basics </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> Accessing BDB SQL Databases</td>
</tr>
</table>
</div>
</body>
</html>
|