Documentation Source Text

Check-in [79b74d138c]
Login

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

Overview
Comment:Fix a typo in the CREATE TRIGGER documentation.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 79b74d138ce27442c23bc113e6752565f8bc7037287ac11574b37d84b577317d
User & Date: drh 2020-04-20 23:07:55.698
Context
2020-04-23
14:44
Merge changes from the 3.31 branch. (check-in: 80ab6c051c user: drh tags: trunk)
2020-04-20
23:07
Fix a typo in the CREATE TRIGGER documentation. (check-in: 79b74d138c user: drh tags: trunk)
2020-04-14
22:15
Merge branch-3.31 fixes into trunk. (check-in: 15a047bc79 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to pages/lang_createtrigger.in.
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<p>^(A special SQL function RAISE() may be used within a trigger-program,)^
with the following syntax</p> 

<tcl>BubbleDiagram raise-function</tcl>

<p>^(When one of RAISE(ROLLBACK,...), RAISE(ABORT,...) or RAISE(FAIL,...)
is called during trigger-program
execution, the specified [ON CONFLICT] processing is performed
the current query terminates.)^
An error code of [SQLITE_CONSTRAINT] is returned to the application,
along with the specified error message.</p>

<p>^When RAISE(IGNORE) is called, the remainder of the current trigger program,
the statement that caused the trigger program to execute and any subsequent
trigger programs that would have been executed are abandoned. ^No database







|







229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<p>^(A special SQL function RAISE() may be used within a trigger-program,)^
with the following syntax</p> 

<tcl>BubbleDiagram raise-function</tcl>

<p>^(When one of RAISE(ROLLBACK,...), RAISE(ABORT,...) or RAISE(FAIL,...)
is called during trigger-program
execution, the specified [ON CONFLICT] processing is performed and
the current query terminates.)^
An error code of [SQLITE_CONSTRAINT] is returned to the application,
along with the specified error message.</p>

<p>^When RAISE(IGNORE) is called, the remainder of the current trigger program,
the statement that caused the trigger program to execute and any subsequent
trigger programs that would have been executed are abandoned. ^No database