README.md edits

This commit is contained in:
2012-10-02 15:10:13 +07:00
parent 42a03a18de
commit f3fc3c0578

View File

@@ -2,7 +2,6 @@ SQLite for Delphi and FreePascal/Lazarus
======================================== ========================================
Complete SQLite3 API translation and simple wrapper for Delphi and FreePascal Complete SQLite3 API translation and simple wrapper for Delphi and FreePascal
Version: 1.0 (March 10, 2010)
Version of SQLite: 3.6.22 Version of SQLite: 3.6.22
@@ -24,32 +23,29 @@ Compatible with Delphi/C++Builder 6-XE3 and FreePascal/Lazarus.
Installation and usage notes Installation and usage notes
---------------------------- ----------------------------
Unzip the package somewhere on your hard drive. Now you need to add the full Unzip the package somewhere on your hard drive. Now you need to add the full path of the Source
path of the Source folder to your IDE options. folder to your IDE options.
For Delphi 6-7 or C++Builder 6: ### For Delphi 6-7 or C++Builder 6
Select Tools > Environment Options from the menu, then go to the Library tab Select Tools > Environment Options from the menu, then go to the Library tab and add the full path
and add the full path of this package's Source directory to the Library Path. of this package's Source directory to the Library Path.
For Delphi 2005 and up, or C++Builder 2006 and up: ### For Delphi 2005 and up, or C++Builder 2006 and up
Select Tools > Options from the menu, then select Environment Options > Select Tools > Options from the menu, then select Environment Options > Delphi Options >
Delphi Options > Library - Win32, and add the full path of this package's Library - Win32, and add the full path of this package's Source directory to the Library Path.
Source directory to the Library Path.
For Lazarus: ### For Lazarus
Select Environment > Options from the menu, then select CodeTools, and add Select Environment > Options from the menu, then select CodeTools, and add the full path of this
the full path of this package's Source directory to the Search Path package's Source directory to the Search Path ("Additional source search path for all projects").
("Additional source search path for all projects").
When using this translation in your projects, add the SQLite3 unit to the When using this translation in your projects, add the SQLite3 unit to the uses clause of your source
uses clause of your source file, if you want to use SQLite3 API, and the file, if you want to use SQLite3 API, and the SQLite3Wrap unit, if you want to use the accompanying
SQLite3Wrap unit, if you want to use the accompanying wrapper. wrapper.
Do not forget to distribute the shared library (sqlite3.dll for Windows, Do not forget to distribute the shared library (sqlite3.dll for Windows, sqlite3.so for Linux) with
sqlite3.so for Linux) with your program. your program.
Contributors Contributors
------------ ------------
Yury Plashenkov http://www.plashenkov.com/ Thanks Marek Mauder (http://galfar.vevb.net) for his contributions.
Marek Mauder http://galfar.vevb.net/