diff --git a/Source/SQLite3.pas b/Source/SQLite3.pas index 0d540a1..0983f8b 100644 --- a/Source/SQLite3.pas +++ b/Source/SQLite3.pas @@ -1,33 +1,32 @@ -{ - SQLite for Delphi and FreePascal/Lazarus +{* + * SQLite for Delphi and FreePascal/Lazarus + * + * This unit contains complete SQLite3 API translation + * Version of SQLite: 3.6.22 + * + * Copyright 2010-2013 Yury Plashenkov + * http://plashenkov.github.com/sqlite/ + * + * The MIT License (MIT) + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + *} - Copyright 2010-2013 Yury Plashenkov - http://www.plashenkov.com/projects/sqlite/ - - SQLite is a software library that implements a self-contained, serverless, - zero-configuration, transactional SQL database engine. The source code for - SQLite is in the public domain and is thus free for use for any purpose, - commercial or private. SQLite is the most widely deployed SQL database engine - in the world. - - This package contains complete SQLite3 API translation for Delphi and - FreePascal, as well as a simple Unicode-enabled object wrapper to simplify - the use of this database engine. - - The contents of this file are used with permission, subject to the Mozilla - Public License Version 1.1 (the "License"); you may not use this file except - in compliance with the License. You may obtain a copy of the License at - http://www.mozilla.org/MPL/MPL-1.1.html - - Software distributed under the License is distributed on an "AS IS" basis, - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for - the specific language governing rights and limitations under the License. -} - -{ - SQLite3 API translation - Version of SQLite: 3.6.22 -} unit SQLite3; {$IFDEF FPC} diff --git a/Source/SQLite3Utils.pas b/Source/SQLite3Utils.pas index 0bfee25..0435a9b 100644 --- a/Source/SQLite3Utils.pas +++ b/Source/SQLite3Utils.pas @@ -1,32 +1,31 @@ -{ - SQLite for Delphi and FreePascal/Lazarus +{* + * SQLite for Delphi and FreePascal/Lazarus + * + * This unit contains miscellaneous utility functions + * + * Copyright 2010-2013 Yury Plashenkov + * http://plashenkov.github.com/sqlite/ + * + * The MIT License (MIT) + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + *} - Copyright 2010-2013 Yury Plashenkov - http://www.plashenkov.com/projects/sqlite/ - - SQLite is a software library that implements a self-contained, serverless, - zero-configuration, transactional SQL database engine. The source code for - SQLite is in the public domain and is thus free for use for any purpose, - commercial or private. SQLite is the most widely deployed SQL database engine - in the world. - - This package contains complete SQLite3 API translation for Delphi and - FreePascal, as well as a simple Unicode-enabled object wrapper to simplify - the use of this database engine. - - The contents of this file are used with permission, subject to the Mozilla - Public License Version 1.1 (the "License"); you may not use this file except - in compliance with the License. You may obtain a copy of the License at - http://www.mozilla.org/MPL/MPL-1.1.html - - Software distributed under the License is distributed on an "AS IS" basis, - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for - the specific language governing rights and limitations under the License. -} - -{ - Miscellaneous utility functions -} unit SQLite3Utils; {$IFDEF FPC} diff --git a/Source/SQLite3Wrap.pas b/Source/SQLite3Wrap.pas index aaeb84a..aa3ef72 100644 --- a/Source/SQLite3Wrap.pas +++ b/Source/SQLite3Wrap.pas @@ -1,32 +1,31 @@ -{ - SQLite for Delphi and FreePascal/Lazarus +{* + * SQLite for Delphi and FreePascal/Lazarus + * + * This unit contains easy-to-use object wrapper over SQLite3 API functions + * + * Copyright 2010-2013 Yury Plashenkov + * http://plashenkov.github.com/sqlite/ + * + * The MIT License (MIT) + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + *} - Copyright 2010-2013 Yury Plashenkov - http://www.plashenkov.com/projects/sqlite/ - - SQLite is a software library that implements a self-contained, serverless, - zero-configuration, transactional SQL database engine. The source code for - SQLite is in the public domain and is thus free for use for any purpose, - commercial or private. SQLite is the most widely deployed SQL database engine - in the world. - - This package contains complete SQLite3 API translation for Delphi and - FreePascal, as well as a simple Unicode-enabled object wrapper to simplify - the use of this database engine. - - The contents of this file are used with permission, subject to the Mozilla - Public License Version 1.1 (the "License"); you may not use this file except - in compliance with the License. You may obtain a copy of the License at - http://www.mozilla.org/MPL/MPL-1.1.html - - Software distributed under the License is distributed on an "AS IS" basis, - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for - the specific language governing rights and limitations under the License. -} - -{ - Simple object wrapper over SQLite3 API -} unit SQLite3Wrap; {$IFDEF FPC}