mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-04 17:56:13 -04:00
copyright 2012-2013
This commit is contained in:
parent
4448038af4
commit
56aa208f62
4
TODO.txt
4
TODO.txt
@ -4,10 +4,8 @@ C++11 explicit support
|
|||||||
|
|
||||||
Adding an encapsulation to the statement ref counter
|
Adding an encapsulation to the statement ref counter
|
||||||
|
|
||||||
copyright 2013
|
|
||||||
|
|
||||||
|
|
||||||
=> V0.5.0
|
=> V0.5.0
|
||||||
|
|
||||||
using assert() in example program to provide a basic test coverage
|
using assert() in example program to provide a basic test coverage
|
||||||
|
|
||||||
Missing features in v0.4.0:
|
Missing features in v0.4.0:
|
||||||
|
@ -95,6 +95,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="src\SQLiteC++\Column.h" />
|
<ClInclude Include="src\SQLiteC++\Column.h" />
|
||||||
<ClInclude Include="src\SQLiteC++\Database.h" />
|
<ClInclude Include="src\SQLiteC++\Database.h" />
|
||||||
|
<ClInclude Include="src\SQLiteC++\Exception.h" />
|
||||||
<ClInclude Include="src\SQLiteC++\SQLiteC++.h" />
|
<ClInclude Include="src\SQLiteC++\SQLiteC++.h" />
|
||||||
<ClInclude Include="src\SQLiteC++\Statement.h" />
|
<ClInclude Include="src\SQLiteC++\Statement.h" />
|
||||||
<ClInclude Include="src\SQLiteC++\Transaction.h" />
|
<ClInclude Include="src\SQLiteC++\Transaction.h" />
|
||||||
|
@ -43,5 +43,8 @@
|
|||||||
<ClInclude Include="src\SQLiteC++\Transaction.h">
|
<ClInclude Include="src\SQLiteC++\Transaction.h">
|
||||||
<Filter>SQLiteC++</Filter>
|
<Filter>SQLiteC++</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="src\SQLiteC++\Exception.h">
|
||||||
|
<Filter>SQLiteC++</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
@ -2,7 +2,7 @@
|
|||||||
* @file Column.cpp
|
* @file Column.cpp
|
||||||
* @brief Encapsulation of a Column in a Row of the result.
|
* @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
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
* or copy at http://opensource.org/licenses/MIT)
|
* or copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @file Column.h
|
* @file Column.h
|
||||||
* @brief Encapsulation of a Column in a Row of the result.
|
* @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
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
* or copy at http://opensource.org/licenses/MIT)
|
* or copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @file Database.cpp
|
* @file Database.cpp
|
||||||
* @brief Management of a SQLite Database Connection.
|
* @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
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
* or copy at http://opensource.org/licenses/MIT)
|
* or copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @file Database.h
|
* @file Database.h
|
||||||
* @brief Management of a SQLite Database Connection.
|
* @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
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
* or copy at http://opensource.org/licenses/MIT)
|
* or copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @file Exception.h
|
* @file Exception.h
|
||||||
* @brief Encapsulation of the error message from SQLite3 on a std::runtime_error.
|
* @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
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
* or copy at http://opensource.org/licenses/MIT)
|
* or copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @file SQLiteC++.h
|
* @file SQLiteC++.h
|
||||||
* @brief SQLiteC++ is a smart and simple C++ SQLite3 wrapper. This file is only "easy include" for other files.
|
* @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
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
* or copy at http://opensource.org/licenses/MIT)
|
* or copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @file Statement.cpp
|
* @file Statement.cpp
|
||||||
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed.
|
* @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
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
* or copy at http://opensource.org/licenses/MIT)
|
* or copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @file Statement.h
|
* @file Statement.h
|
||||||
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed.
|
* @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
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
* or copy at http://opensource.org/licenses/MIT)
|
* or copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @file Transaction.cpp
|
* @file Transaction.cpp
|
||||||
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
|
* @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
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
* or copy at http://opensource.org/licenses/MIT)
|
* or copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @file Transaction.h
|
* @file Transaction.h
|
||||||
* @brief A Transaction is way to group multiple SQL statements into an atomic secured operation.
|
* @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
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
* or copy at http://opensource.org/licenses/MIT)
|
* or copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* Demonstrate how-to use the SQLite++ wrapper
|
* 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
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
* or copy at http://opensource.org/licenses/MIT)
|
* or copy at http://opensource.org/licenses/MIT)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user