Documentation Source Text

Check-in [35017ac57c]
Login

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

Overview
Comment:Merge enhancements from the 3.10.0 branch.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 35017ac57c6fda8c393282e9e51910c00ad0a5c0
User & Date: drh 2016-02-09 14:46:32.930
Context
2016-02-09
22:53
Updates to talk about the auto-explain changes to the shell. (check-in: 5a67b7f178 user: drh tags: trunk)
14:46
Merge enhancements from the 3.10.0 branch. (check-in: 35017ac57c user: drh tags: trunk)
14:43
Update the 3.11.0 change log. (check-in: 0dc9452382 user: drh tags: trunk)
2016-02-02
01:56
Add a mention of sqlite3_column() to the SQLITE_RANGE documentation. (check-in: 2111e3600c user: drh tags: branch-3.10)
Changes
Unified Diff Ignore Whitespace Patch
Changes to pages/rescode.in.
320
321
322
323
324
325
326
327

328
329
330
331
332
333
334
335
  SQL statement being prepared is not authorized.
}
RESCODE SQLITE_FORMAT      24   {
  The SQLITE_FORMAT error code is not currently used by SQLite.
}
RESCODE SQLITE_RANGE       25   {
  The SQLITE_RANGE error indices that the parameter number argument
  to one of the [sqlite3_bind_blob|sqlite3_bind] routines is out of

  range.
}
RESCODE SQLITE_NOTADB      26   {
  When attempting to open a file, the SQLITE_NOTADB error indicates that
  the file being opened does not appear to be an SQLite database file.
}
RESCODE SQLITE_NOTICE      27   {
  The SQLITE_NOTICE result code is not returned by any C/C++ interface.







|
>
|







320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
  SQL statement being prepared is not authorized.
}
RESCODE SQLITE_FORMAT      24   {
  The SQLITE_FORMAT error code is not currently used by SQLite.
}
RESCODE SQLITE_RANGE       25   {
  The SQLITE_RANGE error indices that the parameter number argument
  to one of the [sqlite3_bind_blob|sqlite3_bind] routines or the
  column number in one of the [sqlite3_column_int|sqlite3_column]
  routines is out of range.
}
RESCODE SQLITE_NOTADB      26   {
  When attempting to open a file, the SQLITE_NOTADB error indicates that
  the file being opened does not appear to be an SQLite database file.
}
RESCODE SQLITE_NOTICE      27   {
  The SQLITE_NOTICE result code is not returned by any C/C++ interface.