From d381c48b049794f87374b981d532b78558fccbdc Mon Sep 17 00:00:00 2001 From: Dmitry Kalyanov Date: Sun, 14 Nov 2010 17:56:33 +0300 Subject: [PATCH] Add to changelog --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index a09dc1d..5fbaef6 100644 --- a/index.html +++ b/index.html @@ -181,7 +181,7 @@ This clause will bind vars (a list of variables) to the values of the col

Additionally, it is possible to use the prepared statements API of sqlite. Create the prepared statement with prepare-statement, bind its parameters with bind-parameter, step through it with step-statement, retrieve the results with statement-column-value, and finally reset it to be used again with reset-statement or dispose of it with finalize-statement.

-

Positional parameters in queries are supported (sqlite supports named parameters but this package does not support them). Parameters are denoted by question mark in SQL code.

+

Positional and named parameters in queries are supported. Positional parameters are denoted by question mark in SQL code, and named parameters are denoted by prefixing color (:), at sign (@) or dollar sign ($) before parameter name.

Following types are supported:


 

Acknowledgements

-- 2.11.4.GIT