Skip to content

Commit 4406cf2

Browse files
committed
Added LICENSE file and updated copyright headers.
1 parent f06ba33 commit 4406cf2

File tree

3 files changed

+39
-54
lines changed

3 files changed

+39
-54
lines changed

CppSQLite3.cpp

Lines changed: 7 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,10 @@
1-
////////////////////////////////////////////////////////////////////////////////
2-
// CppSQLite3 - A C++ wrapper around the SQLite3 embedded database library.
3-
//
4-
// Copyright (c) 2004 Rob Groves. All Rights Reserved. [email protected]
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement, is hereby granted, provided that the above copyright notice,
9-
// this paragraph and the following two paragraphs appear in all copies,
10-
// modifications, and distributions.
11-
//
12-
// IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT,
13-
// INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST
14-
// PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION,
15-
// EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
18-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
19-
// PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF
20-
// ANY, PROVIDED HEREUNDER IS PROVIDED "AS IS". THE AUTHOR HAS NO OBLIGATION
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
//
23-
// V3.0 03/08/2004 -Initial Version for sqlite3
24-
//
25-
// V3.1 16/09/2004 -Implemented getXXXXField using sqlite3 functions
26-
// -Added CppSQLiteDB3::tableExists()
27-
////////////////////////////////////////////////////////////////////////////////
1+
/*
2+
* CppSQLite
3+
* Developed by Rob Greeves <[email protected]>
4+
* Maintained by NeoSmart Technologies <http://neosmart.net/>
5+
* See LICENSE file for copyright and license info
6+
*/
7+
288
#include "CppSQLite3.h"
299
#include <cstdlib>
3010

CppSQLite3.h

Lines changed: 7 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,10 @@
1-
////////////////////////////////////////////////////////////////////////////////
2-
// CppSQLite3 - A C++ wrapper around the SQLite3 embedded database library.
3-
//
4-
// Copyright (c) 2004 Rob Groves. All Rights Reserved. [email protected]
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement, is hereby granted, provided that the above copyright notice,
9-
// this paragraph and the following two paragraphs appear in all copies,
10-
// modifications, and distributions.
11-
//
12-
// IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT,
13-
// INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST
14-
// PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION,
15-
// EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
18-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
19-
// PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF
20-
// ANY, PROVIDED HEREUNDER IS PROVIDED "AS IS". THE AUTHOR HAS NO OBLIGATION
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
//
23-
// V3.0 03/08/2004 -Initial Version for sqlite3
24-
//
25-
// V3.1 16/09/2004 -Implemented getXXXXField using sqlite3 functions
26-
// -Added CppSQLiteDB3::tableExists()
27-
////////////////////////////////////////////////////////////////////////////////
1+
/*
2+
* CppSQLite
3+
* Developed by Rob Greeves <[email protected]>
4+
* Maintained by NeoSmart Technologies <http://neosmart.net/>
5+
* See LICENSE file for copyright and license info
6+
*/
7+
288
#ifndef _CppSQLite3_H_
299
#define _CppSQLite3_H_
3010

LICENSE

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
CppSQLite was originally developed by Rob Greeves on CodeProject:
2+
http://www.codeproject.com/KB/database/CppSQLite.aspx
3+
4+
Maintenance and updates are Copyright (c) 2011 NeoSmart Technologies
5+
<http://neosmart.net/>
6+
7+
Original copyright information:
8+
Copyright (c) 2004 Rob Groves. All Rights Reserved. [email protected]
9+
10+
Permission to use, copy, modify, and distribute this software and its
11+
documentation for any purpose, without fee, and without a written
12+
agreement, is hereby granted, provided that the above copyright notice,
13+
this paragraph and the following two paragraphs appear in all copies,
14+
modifications, and distributions.
15+
16+
IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT,
17+
INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST
18+
PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION,
19+
EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
20+
21+
THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
22+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23+
PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF
24+
ANY, PROVIDED HEREUNDER IS PROVIDED "AS IS". THE AUTHOR HAS NO OBLIGATION
25+
TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.

0 commit comments

Comments
 (0)