From b3f554306397f98e23af37e4475b33f3f8a4b20c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Tue, 10 Apr 2012 22:48:09 +0200 Subject: [PATCH] Formatting for GitHub --- README.md | 18 ++++++++++-------- wrappers.md | 3 ++- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 85d8756..f12881a 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,13 @@ SQLiteC++ is a smart and easy to use C++ SQLite3 wrapper. See SQLiteC++ website http://srombauts.github.com/SQLiteCpp on GitHub. +### License Copyright (c) 2012 Sébastien Rombauts (sebastien.rombauts@gmail.com) Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or copy at http://opensource.org/licenses/MIT) - ### The goals of SQLiteC++ are: - to offer the best of existing simple wrappers @@ -41,6 +41,7 @@ and then is always valid until destroyed. To use it in your project, you only need to add the 6 SQLiteC++ source files in your project code base (not the main.cpp example file). +## Getting started ### About SQLite: SQLite is a library that implements a serverless transactional SQL database engine. http://www.sqlite.org/about.html @@ -102,11 +103,12 @@ catch (std::exception& e) } ``` -### For other simple C++ SQLite wrappers look at: +## See also +### Some other simple C++ SQLite wrappers: - - **sqlite3cc**: uses boost, LPGPL (http://ed.am/dev/sqlite3cc and https://launchpad.net/sqlite3cc) - - **sqdbcpp**: RAII design, no depandencies, UTF-8/UTF-16, new BSD license (http://code.google.com/p/sqdbcpp/) - - **sqlite3pp**: uses boost, MIT License (http://code.google.com/p/sqlite3pp/) - - **SQLite++**: uses boost build system, Boost License 1.0 (http://sqlitepp.berlios.de/) - - **CppSQLite**: famous Code Project but old design, BSD License (http://www.codeproject.com/Articles/6343/CppSQLite-C-Wrapper-for-SQLite/) - - **easySQLite**: http://code.google.com/p/easysqlite/ + - [sqdbcpp](http://code.google.com/p/sqdbcpp/): RAII design, simple, no depandencies, UTF-8/UTF-16, new BSD license + - [sqlite3cc](http://ed.am/dev/sqlite3cc): uses boost, modern design, LPGPL + - [sqlite3pp](http://code.google.com/p/sqlite3pp/): uses boost, MIT License + - [SQLite++](http://sqlitepp.berlios.de/): uses boost build system, Boost License 1.0 + - [CppSQLite](http://www.codeproject.com/Articles/6343/CppSQLite-C-Wrapper-for-SQLite/): famous Code Project but old design, BSD License + - [easySQLite](http://code.google.com/p/easysqlite/): manages table as structured objects, complex diff --git a/wrappers.md b/wrappers.md index a7b0900..0a539b4 100644 --- a/wrappers.md +++ b/wrappers.md @@ -62,7 +62,7 @@ http://www.reddit.com/search?q=sqlite **CppSQLite**: http://www.codeproject.com/Articles/6343/CppSQLite-C-Wrapper-for-SQLite/ - Mar 2004, Jun 2011 -- (+/-) BSD License? CodeProject License? +- (++??) BSD License? CodeProject License? - (+) famous CodeProject, good introductory article - (--) Not documented in code - (--) old design, no RAII @@ -73,6 +73,7 @@ http://www.reddit.com/search?q=sqlite **easySQLite**: http://code.google.com/p/easysqlite/ - Sep 2010 +- (++) new BSD license - (+/-) Manage table as objects, requiring to define their structure - (-) not RAII - (--) complex