From: Alexander Gavrilov Date: Sat, 30 Oct 2010 10:05:23 +0000 (+0400) Subject: Document new prepared statement API functions. X-Git-Tag: 0.2~4 X-Git-Url: https://repo.or.cz/w/cl-sqlite.git/commitdiff_plain/0a323105c6f8e12838b6f265403fa6afba0dd0ab Document new prepared statement API functions. --- diff --git a/index.html b/index.html index 4ae51b0..31d5843 100644 --- a/index.html +++ b/index.html @@ -55,6 +55,7 @@
  • The SQLITE dictionary
    1. bind-parameter +
    2. clear-statement-bindings
    3. connect
    4. disconnect
    5. execute-non-query @@ -67,6 +68,8 @@
    6. reset-statement
    7. sqlite-handle
    8. sqlite-statement +
    9. statement-bind-parameter-names +
    10. statement-column-names
    11. statement-column-value
    12. step-statement
    13. with-transaction @@ -187,6 +190,16 @@ Supported types:
      + + +


      [Function]
      clear-statement-bindings statement +


      + +Binds all parameters of the statement to NULL. + +
      + + @@ -342,7 +355,7 @@ Example:


      [Function]
      reset-statement statement


      -Resets the statement and prepare it to be called again. +Resets the statement and prepares it to be called again. Note that bind parameter values are not cleared; use clear-statement-bindings for that.
      @@ -372,6 +385,25 @@ Class that represents the prepared statement. + + +


      [Accessor]
      statement-bind-parameter-names statement => list of strings +


      + +Returns the names of the bind parameters of the prepared statement. If a parameter does not have a name, the corresponding list item is NIL. +
      + + + + + +


      [Accessor]
      statement-column-names statement => list of strings +


      + +Returns the names of columns in the result set of the prepared statement. +
      + +