view Core/SQLite/README.txt @ 51:9beb9b8582f7

renames
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Sep 2012 17:43:31 +0200
parents db4d996ea264
children c996319e90bc
line wrap: on
line source

Introduction
============

The code in this folder is a standalone object-oriented wrapper around
SQLite3. It is derived from the code of Chromium:

http://src.chromium.org/viewvc/chrome/trunk/src/sql/
http://maxradi.us/documents/sqlite/


Main differences with Chromium
==============================

* The reference counting mechanism has been reimplemented to make it 
  simpler.
* The PalanthirException class is used for the exception mechanisms.
* A statement is always valid (is_valid() always return true).
* The classes and the methods have been renamed to meet Palanthir's
  coding conventions.


Licensing
=========

The code in this folder is licensed under the 3-clause BSD license, in
order to respect the original license of the code.

It is pretty straightforward to extract the code from this folder and
to include it in another project.