From 501c91e18ffd76470d51413bc0a63cc339413d93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Sun, 10 Mar 2013 16:06:42 +0100 Subject: [PATCH] Small updates to TODO and README --- README.md | 2 ++ TODO.txt | 12 ++++++++---- wrappers.md => WRAPPERS.md | 0 3 files changed, 10 insertions(+), 4 deletions(-) rename wrappers.md => WRAPPERS.md (100%) diff --git a/README.md b/README.md index 78fdc71..837cc21 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper. See SQLiteC++ website http://srombauts.github.com/SQLiteCpp on GitHub. +Keywords: sqlite, sqlite3, C, library, wrapper C++ + ### License Copyright (c) 2012-2013 Sébastien Rombauts (sebastien.rombauts@gmail.com) diff --git a/TODO.txt b/TODO.txt index 3f1c83b..41b44f7 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1,7 +1,12 @@ Check C++11 explicit support Add a FAQ.txt -Create Github Wiki pages with the README.md and FAQ.txt : Installation, Examples, +Add a Tutorial: for SQLite newbies +Link to GitHub/issue +Coding Style Guidelines: CamelCase, see http://www.appinf.com/download/CppCodingStyleGuide.pdf +Create Github Wiki pages with the README.md and FAQ.txt: Installation, Examples, Tutorial, How to contribute + +Publish a versionned ZIP file in Google Project Mirror Publish the Doxygen Documentation in the Github Pages (gh-pages branch) @@ -13,7 +18,7 @@ Missing features in v0.5.0: - getColumnByName ? std::map getRow() ? Missing documentation in v0.5.0: -- This wrapper is not thread safe : compare to the thread safety of the SQLite3 library +- This wrapper is not thread safe: compare to the thread safety of the SQLite3 library - explain the noncopyable property for RAII design - comment on returning error code instead of exception that shall not be thrown when exepected (!?) @@ -26,5 +31,4 @@ Advanced missing features: - ATTACH Database ? NO: can already be done by "ATTACH" Statement - Add optional usage of experimental sqlite3_trace() function to enable statistics -Post an article to CodeProject : Is there a license issue ? -Mirror the repository to GoogleCode : with a versionned downloadable ZIP file +Post an article to CodeProject: Is there a license issue ? \ No newline at end of file diff --git a/wrappers.md b/WRAPPERS.md similarity index 100% rename from wrappers.md rename to WRAPPERS.md