copyright 2012-2013

This commit is contained in:
Sébastien Rombauts 2013-03-06 17:10:01 +01:00
parent 4448038af4
commit 56aa208f62
14 changed files with 172 additions and 170 deletions

View File

@ -4,10 +4,8 @@ C++11 explicit support
Adding an encapsulation to the statement ref counter
copyright 2013
=> V0.5.0
using assert() in example program to provide a basic test coverage
Missing features in v0.4.0:

View File

@ -95,6 +95,7 @@
<ItemGroup>
<ClInclude Include="src\SQLiteC++\Column.h" />
<ClInclude Include="src\SQLiteC++\Database.h" />
<ClInclude Include="src\SQLiteC++\Exception.h" />
<ClInclude Include="src\SQLiteC++\SQLiteC++.h" />
<ClInclude Include="src\SQLiteC++\Statement.h" />
<ClInclude Include="src\SQLiteC++\Transaction.h" />

View File

@ -43,5 +43,8 @@
<ClInclude Include="src\SQLiteC++\Transaction.h">
<Filter>SQLiteC++</Filter>
</ClInclude>
<ClInclude Include="src\SQLiteC++\Exception.h">
<Filter>SQLiteC++</Filter>
</ClInclude>
</ItemGroup>
</Project>

View File

@ -2,7 +2,7 @@
* @file Column.cpp
* @brief Encapsulation of a Column in a Row of the result.
*
* Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)

View File

@ -2,7 +2,7 @@
* @file Column.h
* @brief Encapsulation of a Column in a Row of the result.
*
* Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)

View File

@ -2,7 +2,7 @@
* @file Database.cpp
* @brief Management of a SQLite Database Connection.
*
* Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)

View File

@ -2,7 +2,7 @@
* @file Database.h
* @brief Management of a SQLite Database Connection.
*
* Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)

View File

@ -2,7 +2,7 @@
* @file Exception.h
* @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
*
* Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)

View File

@ -2,7 +2,7 @@
* @file SQLiteC++.h
* @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files.
*
* Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)

View File

@ -2,7 +2,7 @@
* @file Statement.cpp
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed.
*
* Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)

View File

@ -2,7 +2,7 @@
* @file Statement.h
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed.
*
* Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)

View File

@ -2,7 +2,7 @@
* @file Transaction.cpp
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
*
* Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)

View File

@ -2,7 +2,7 @@
* @file Transaction.h
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
*
* Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)

View File

@ -4,7 +4,7 @@
*
* Demonstrate how-to use the SQLite++ wrapper
*
* Copyright (c) 2012 Sebastien Rombauts (sebastien.rombauts@gmail.com)
* Copyright (c) 2012-2013 Sebastien Rombauts (sebastien.rombauts@gmail.com)
*
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
* or copy at http://opensource.org/licenses/MIT)