From: Alexander Gavrilov Date: Sat, 30 Oct 2010 10:12:27 +0000 (+0400) Subject: Document the new error conditions and property accessors. X-Git-Tag: 0.2~3 X-Git-Url: https://repo.or.cz/w/cl-sqlite.git/commitdiff_plain/c9e023d966a55287fc31052ad8193cafe566fab7 Document the new error conditions and property accessors. --- diff --git a/index.html b/index.html index 31d5843..543ff0e 100644 --- a/index.html +++ b/index.html @@ -66,6 +66,12 @@
  • last-insert-rowid
  • prepare-statement
  • reset-statement +
  • sqlite-error +
  • sqlite-constraint-error +
  • sqlite-error-code +
  • sqlite-error-db-handle +
  • sqlite-error-message +
  • sqlite-error-sql
  • sqlite-handle
  • sqlite-statement
  • statement-bind-parameter-names @@ -361,6 +367,65 @@ Resets the statement and prepares it to be called again. Note that bind p + + +


    [Condition]
    sqlite-error +


    + +Error condition used by the library. +
    + + + + + +


    [Condition]
    sqlite-constraint-error +


    + +A subclass of sqlite-error used to distinguish constraint violation errors. +
    + + + + + +


    [Accessor]
    sqlite-error-code sqlite-error => keyword or null +


    + +Returns the SQLite error code represeting the error. +
    + + + + + +


    [Accessor]
    sqlite-error-db-handle sqlite-error => sqlite-handle or null +


    + +Returns the SQLite database connection that caused the error. +
    + + + + + +


    [Accessor]
    sqlite-error-message sqlite-error => string or null +


    + +Returns the SQLite error message corresponding to the error code. +
    + + + + + +


    [Accessor]
    sqlite-error-sql sqlite-error => string or null +


    + +Returns the SQL statement source string that caused the error. +
    + +