Minor info fixes

This commit is contained in:
2020-10-03 04:50:49 +03:00
parent d13468daa1
commit 4b942a245a
3 changed files with 54 additions and 54 deletions

View File

@@ -1,30 +1,30 @@
{* {*
* SQLite for Delphi and FreePascal/Lazarus * SQLite for Delphi and FreePascal/Lazarus
* *
* This unit contains complete SQLite3 API translation * This unit contains complete SQLite3 API translation.
* Version of SQLite: 3.6.22 * Version of SQLite: 3.6.22
* *
* Copyright 2010-2013 Yuri Plashenkov * Copyright (c) 2013 Yuri Plashenkov
* *
* MIT License * MIT License
* *
* Permission is hereby granted, free of charge, to any person obtaining * Permission is hereby granted, free of charge, to any person obtaining a copy
* a copy of this software and associated documentation files (the "Software"), * of this software and associated documentation files (the "Software"), to deal
* to deal in the Software without restriction, including without limitation * in the Software without restriction, including without limitation the rights
* the rights to use, copy, modify, merge, publish, distribute, sublicense, * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* and/or sell copies of the Software, and to permit persons to whom * copies of the Software, and to permit persons to whom the Software is
* the Software is furnished to do so, subject to the following conditions: * furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included * The above copyright notice and this permission notice shall be included in all
* in all copies or substantial portions of the Software. * copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * 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 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* IN THE SOFTWARE. * SOFTWARE.
*} *}
unit SQLite3; unit SQLite3;

View File

@@ -1,29 +1,29 @@
{* {*
* SQLite for Delphi and FreePascal/Lazarus * SQLite for Delphi and FreePascal/Lazarus
* *
* This unit contains miscellaneous utility functions * This unit contains miscellaneous utility functions.
* *
* Copyright 2010-2013 Yuri Plashenkov * Copyright (c) 2013 Yuri Plashenkov
* *
* MIT License * MIT License
* *
* Permission is hereby granted, free of charge, to any person obtaining * Permission is hereby granted, free of charge, to any person obtaining a copy
* a copy of this software and associated documentation files (the "Software"), * of this software and associated documentation files (the "Software"), to deal
* to deal in the Software without restriction, including without limitation * in the Software without restriction, including without limitation the rights
* the rights to use, copy, modify, merge, publish, distribute, sublicense, * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* and/or sell copies of the Software, and to permit persons to whom * copies of the Software, and to permit persons to whom the Software is
* the Software is furnished to do so, subject to the following conditions: * furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included * The above copyright notice and this permission notice shall be included in all
* in all copies or substantial portions of the Software. * copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * 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 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* IN THE SOFTWARE. * SOFTWARE.
*} *}
unit SQLite3Utils; unit SQLite3Utils;

View File

@@ -1,29 +1,29 @@
{* {*
* SQLite for Delphi and FreePascal/Lazarus * SQLite for Delphi and FreePascal/Lazarus
* *
* This unit contains easy-to-use object wrapper over SQLite3 API functions * This unit contains easy-to-use object wrapper over SQLite3 API functions.
* *
* Copyright 2010-2013 Yuri Plashenkov * Copyright (c) 2013 Yuri Plashenkov
* *
* MIT License * MIT License
* *
* Permission is hereby granted, free of charge, to any person obtaining * Permission is hereby granted, free of charge, to any person obtaining a copy
* a copy of this software and associated documentation files (the "Software"), * of this software and associated documentation files (the "Software"), to deal
* to deal in the Software without restriction, including without limitation * in the Software without restriction, including without limitation the rights
* the rights to use, copy, modify, merge, publish, distribute, sublicense, * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* and/or sell copies of the Software, and to permit persons to whom * copies of the Software, and to permit persons to whom the Software is
* the Software is furnished to do so, subject to the following conditions: * furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included * The above copyright notice and this permission notice shall be included in all
* in all copies or substantial portions of the Software. * copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * 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 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* IN THE SOFTWARE. * SOFTWARE.
*} *}
unit SQLite3Wrap; unit SQLite3Wrap;