Documentation Source Text

Check-in [1b0ed95a32]
Login

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

Overview
Comment:Fix a typo in FAQ item 14.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1b0ed95a32fa71dfbc7837f37787ee7b05aada5b
User & Date: dan 2014-05-22 10:00:24.306
Context
2014-05-24
17:31
Merge accidental fork (check-in: 0f2064446a user: drh tags: trunk)
2014-05-22
10:00
Fix a typo in FAQ item 14. (check-in: 1b0ed95a32 user: dan tags: trunk)
2014-05-19
20:00
Clarification in the text of the release notes for 3.8.5. (check-in: c0ce61ad28 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to pages/faq.in.
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342

faq {
  How do I use a string literal that contains an embedded single-quote (')
  character?
} {
  <p>The SQL standard specifies that single-quotes in strings are escaped
  by putting two single quotes in a row.  SQL works like the Pascal programming
  language in the regard.  SQLite follows this standard.  Example:
  </p>

  <blockquote><pre>
    INSERT INTO xyz VALUES('5 O''clock');
  </pre></blockquote>
}








|







328
329
330
331
332
333
334
335
336
337
338
339
340
341
342

faq {
  How do I use a string literal that contains an embedded single-quote (')
  character?
} {
  <p>The SQL standard specifies that single-quotes in strings are escaped
  by putting two single quotes in a row.  SQL works like the Pascal programming
  language in this regard. Example:
  </p>

  <blockquote><pre>
    INSERT INTO xyz VALUES('5 O''clock');
  </pre></blockquote>
}