SQLite

Check-in [800274b769]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Add a line to genfkey.README showing how to link against a shared library. Ticket #3502. (CVS 5907)
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 800274b76945a41ca4ea72c455d220103a6b01dc
User & Date: danielk1977 2008-11-15 04:54:32.000
Context
2008-11-15
11:22
Fix compiler warnings in pcache1.c related to comparison of unsigned and signed values. (CVS 5908) (check-in: ce77ea989e user: danielk1977 tags: trunk)
04:54
Add a line to genfkey.README showing how to link against a shared library. Ticket #3502. (CVS 5907) (check-in: 800274b769 user: danielk1977 tags: trunk)
2008-11-13
19:12
Fix a couple of memory leaks that may follow malloc failures. (CVS 5906) (check-in: 4cf8a8e1bf user: danielk1977 tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to tool/genfkey.README.
94
95
96
97
98
99
100





101
102
103
104
105
106
107
COMPILATION

  The source code for this program consists of a single C file - genfkey.c.
  The only dependency is sqlite itself. Using gcc and the sqlite amalgamation
  source code, it may be compiled using the following command:

    gcc genfkey.c sqlite3.c -o genfkey






  If compiled/linked against an SQLite version earlier than 3.6.4, then
  all foreign key constraints are assumed to be "ON UPDATE RESTRICT" and
  "ON DELETE RESTRICT". If linked against 3.6.4 or newer, "CASCADE" and
  "SET NULL" are supported as well as "RESTRICT". All 3.x versions of SQLite
  may use the created triggers definitions.








>
>
>
>
>







94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
COMPILATION

  The source code for this program consists of a single C file - genfkey.c.
  The only dependency is sqlite itself. Using gcc and the sqlite amalgamation
  source code, it may be compiled using the following command:

    gcc genfkey.c sqlite3.c -o genfkey

  Or, to use an installed version of sqlite (the kind linux distributions
  install as part of the sqlite3-dev package):

    gcc genfkey.c -lsqlite3 -o genfkey

  If compiled/linked against an SQLite version earlier than 3.6.4, then
  all foreign key constraints are assumed to be "ON UPDATE RESTRICT" and
  "ON DELETE RESTRICT". If linked against 3.6.4 or newer, "CASCADE" and
  "SET NULL" are supported as well as "RESTRICT". All 3.x versions of SQLite
  may use the created triggers definitions.