mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-05 18:26:05 -04:00
Update copyright notice to 2024
This commit is contained in:
parent
73f788dddf
commit
1909a777d5
@ -1,6 +1,6 @@
|
|||||||
# Main CMake file for compiling the library itself, examples and tests.
|
# Main CMake file for compiling the library itself, examples and tests.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
# Copyright (c) 2012-2024 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)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
Copyright (c) 2012-2024 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
@ -22,7 +22,7 @@ with a few intuitive and well documented C++ classes.
|
|||||||
|
|
||||||
### License:
|
### License:
|
||||||
|
|
||||||
Copyright (c) 2012-2023 Sébastien Rombauts (sebastien.rombauts@gmail.com)
|
Copyright (c) 2012-2024 Sébastien Rombauts (sebastien.rombauts@gmail.com)
|
||||||
<a href="https://www.paypal.me/SRombauts" title="Pay Me a Beer! Donate with PayPal :)"><img src="https://www.paypalobjects.com/webstatic/paypalme/images/pp_logo_small.png" width="118"></a>
|
<a href="https://www.paypal.me/SRombauts" title="Pay Me a Beer! Donate with PayPal :)"><img src="https://www.paypalobjects.com/webstatic/paypalme/images/pp_logo_small.png" width="118"></a>
|
||||||
|
|
||||||
Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
# Copyright (c) 2012-2024 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
||||||
|
|
||||||
# build format
|
# build format
|
||||||
version: "{build}"
|
version: "{build}"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@REM Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
@REM Copyright (c) 2012-2024 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
||||||
@REM
|
@REM
|
||||||
@REM Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
@REM Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
@REM or copy at http://opensource.org/licenses/MIT)
|
@REM or copy at http://opensource.org/licenses/MIT)
|
||||||
|
2
build.sh
2
build.sh
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Copyright (c) 2012-2023 Sébastien Rombauts (sebastien.rombauts@gmail.com)
|
# Copyright (c) 2012-2024 Sébastien 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 @@
|
|||||||
*
|
*
|
||||||
* Demonstrates how-to use the SQLite++ wrapper
|
* Demonstrates how-to use the SQLite++ wrapper
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup SQLiteCpp
|
* @ingroup SQLiteCpp
|
||||||
* @brief Definition of the SQLITECPP_ASSERT() macro.
|
* @brief Definition of the SQLITECPP_ASSERT() macro.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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 @@
|
|||||||
* @brief Backup is used to backup a database file in a safe and online way.
|
* @brief Backup is used to backup a database file in a safe and online way.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2015 Shibao HONG (shibaohong@outlook.com)
|
* Copyright (c) 2015 Shibao HONG (shibaohong@outlook.com)
|
||||||
* Copyright (c) 2015-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2015-2024 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)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup SQLiteCpp
|
* @ingroup SQLiteCpp
|
||||||
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
|
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup SQLiteCpp
|
* @ingroup SQLiteCpp
|
||||||
* @brief Management of a SQLite Database Connection.
|
* @brief Management of a SQLite Database Connection.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup SQLiteCpp
|
* @ingroup SQLiteCpp
|
||||||
* @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-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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 @@
|
|||||||
* @brief Convenience function to execute a Statement with multiple Parameter sets
|
* @brief Convenience function to execute a Statement with multiple Parameter sets
|
||||||
*
|
*
|
||||||
* Copyright (c) 2019 Maximilian Bachmann (contact@maxbachmann.de)
|
* Copyright (c) 2019 Maximilian Bachmann (contact@maxbachmann.de)
|
||||||
* Copyright (c) 2019-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2019-2024 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)
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
*
|
*
|
||||||
* Include this main header file in your project to gain access to all functionality provided by the wrapper.
|
* Include this main header file in your project to gain access to all functionality provided by the wrapper.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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)
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
* secured operation. Similar to a transaction while allowing child savepoints.
|
* secured operation. Similar to a transaction while allowing child savepoints.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2020 Kelvin Hammond (hammond.kelvin@gmail.com)
|
* Copyright (c) 2020 Kelvin Hammond (hammond.kelvin@gmail.com)
|
||||||
* Copyright (c) 2020-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2020-2024 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
||||||
*
|
*
|
||||||
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or
|
||||||
* copy at http://opensource.org/licenses/MIT)
|
* copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup SQLiteCpp
|
* @ingroup SQLiteCpp
|
||||||
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
|
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup SQLiteCpp
|
* @ingroup SQLiteCpp
|
||||||
* @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-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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 @@
|
|||||||
* @brief Convenience function for Statement::bind(...)
|
* @brief Convenience function for Statement::bind(...)
|
||||||
*
|
*
|
||||||
* Copyright (c) 2016 Paul Dreik (github@pauldreik.se)
|
* Copyright (c) 2016 Paul Dreik (github@pauldreik.se)
|
||||||
* Copyright (c) 2016-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2016-2024 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
||||||
* Copyright (c) 2019 Maximilian Bachmann (contact@maxbachmann.de)
|
* Copyright (c) 2019 Maximilian Bachmann (contact@maxbachmann.de)
|
||||||
*
|
*
|
||||||
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# CMake file for compiling the sqlite3 static library under Windows (for ease of use)
|
# CMake file for compiling the sqlite3 static library under Windows (for ease of use)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
# Copyright (c) 2012-2024 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 @@
|
|||||||
* @brief Backup is used to backup a database file in a safe and online way.
|
* @brief Backup is used to backup a database file in a safe and online way.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2015 Shibao HONG (shibaohong@outlook.com)
|
* Copyright (c) 2015 Shibao HONG (shibaohong@outlook.com)
|
||||||
* Copyright (c) 2015-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2015-2024 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)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup SQLiteCpp
|
* @ingroup SQLiteCpp
|
||||||
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
|
* @brief Encapsulation of a Column in a row of the result pointed by the prepared SQLite::Statement.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup SQLiteCpp
|
* @ingroup SQLiteCpp
|
||||||
* @brief Management of a SQLite Database Connection.
|
* @brief Management of a SQLite Database Connection.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup SQLiteCpp
|
* @ingroup SQLiteCpp
|
||||||
* @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-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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)
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
* secured operation. Similar to a transaction while allowing child savepoints.
|
* secured operation. Similar to a transaction while allowing child savepoints.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2020 Kelvin Hammond (hammond.kelvin@gmail.com)
|
* Copyright (c) 2020 Kelvin Hammond (hammond.kelvin@gmail.com)
|
||||||
* Copyright (c) 2020-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2020-2024 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
||||||
*
|
*
|
||||||
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or
|
* Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or
|
||||||
* copy at http://opensource.org/licenses/MIT)
|
* copy at http://opensource.org/licenses/MIT)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup SQLiteCpp
|
* @ingroup SQLiteCpp
|
||||||
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
|
* @brief A prepared SQLite Statement is a compiled SQL query ready to be executed, pointing to a row of result.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup SQLiteCpp
|
* @ingroup SQLiteCpp
|
||||||
* @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-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup tests
|
* @ingroup tests
|
||||||
* @brief Test of a SQLiteCpp Column.
|
* @brief Test of a SQLiteCpp Column.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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)
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* @ingroup tests
|
* @ingroup tests
|
||||||
* @brief Test of a SQLiteCpp Database.
|
* @brief Test of a SQLiteCpp Database.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2023 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
* Copyright (c) 2012-2024 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