Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: third_party/sqlite/sqlite-src-3080704/tool/genfkey.README

Issue 883353008: [sql] Import reference version of SQLite 3.8.7.4. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hold back encoding change which is messing up patch. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 1
2 OVERVIEW 2 OVERVIEW
3 3
4 The SQLite library is capable of parsing SQL foreign key constraints 4 The SQLite library is capable of parsing SQL foreign key constraints
5 supplied as part of CREATE TABLE statements, but it does not actually 5 supplied as part of CREATE TABLE statements, but it does not actually
6 implement them. However, most of the features of foreign keys may be 6 implement them. However, most of the features of foreign keys may be
7 implemented using SQL triggers, which SQLite does support. This text 7 implemented using SQL triggers, which SQLite does support. This text
8 file describes a feature of the SQLite shell tool (sqlite3) that 8 file describes a feature of the SQLite shell tool (sqlite3) that
9 extracts foreign key definitions from an existing SQLite database and 9 extracts foreign key definitions from an existing SQLite database and
10 creates the set of CREATE TRIGGER statements required to implement 10 creates the set of CREATE TRIGGER statements required to implement
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 in the same way as the results of SELECT queries are. Normally, this means 128 in the same way as the results of SELECT queries are. Normally, this means
129 they will be printed to stdout, but this can be configured using other 129 they will be printed to stdout, but this can be configured using other
130 dot-commands (i.e. ".output"). 130 dot-commands (i.e. ".output").
131 131
132 The simplest way to activate the foriegn key definitions in a database 132 The simplest way to activate the foriegn key definitions in a database
133 is simply to open it using the shell tool and enter the command 133 is simply to open it using the shell tool and enter the command
134 ".genfkey --exec": 134 ".genfkey --exec":
135 135
136 sqlite> .genfkey --exec 136 sqlite> .genfkey --exec
137 137
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/tool/fragck.tcl ('k') | third_party/sqlite/sqlite-src-3080704/tool/genfkey.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698