comparison Core/SQLite/README.txt @ 17:db4d996ea264

licensing of sqlite
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 23 Jul 2012 09:29:00 +0200
parents 3959d33612cc
children 9beb9b8582f7
comparison
equal deleted inserted replaced
15:2fcf8e5e789c 17:db4d996ea264
1 This API is strongly inspired by Google Chromium's code, but has been 1 Introduction
2 much simplified: 2 ============
3
4 The code in this folder is a standalone object-oriented wrapper around
5 SQLite3. It is derived from the code of Chromium:
3 6
4 http://src.chromium.org/viewvc/chrome/trunk/src/sql/ 7 http://src.chromium.org/viewvc/chrome/trunk/src/sql/
5 http://maxradi.us/documents/sqlite/ 8 http://maxradi.us/documents/sqlite/
6 9
7 10
8 NOTES : 11 Main differences with Chromium
9 * A statement is always valid (is_valid() always return true) 12 ==============================
13
14 * The reference counting mechanism has been reimplemented to make it
15 simpler.
16 * The PalantirException class is used for the exception mechanisms.
17 * A statement is always valid (is_valid() always return true).
18 * The classes and the methods have been renamed to meet Palantir's
19 coding conventions.
20
21
22 Licensing
23 =========
24
25 The code in this folder is licensed under the 3-clause BSD license, in
26 order to respect the original license of the code.
27
28 It is pretty straightforward to extract the code from this folder and
29 to include it in another project.