From 58436e3d08a3fae164d719c1f87693adac1c5e51 Mon Sep 17 00:00:00 2001 From: Joao Gilberto Magalhaes Date: Fri, 6 Dec 2024 10:03:50 -0600 Subject: [PATCH] Update Docs --- docs/parameters.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/parameters.md b/docs/parameters.md index 122ae82..e2fe9f5 100644 --- a/docs/parameters.md +++ b/docs/parameters.md @@ -17,14 +17,12 @@ AnyDatasetDB has some special parameters: | Parameter | Value | Description | |--------------------------------|-----------|---------------------------------------------------------------------------------------------------------------------------| -| DbPdoDriver::STATEMENT_CACHE | true | If this parameter is set with "true", anydataset will cache the last prepared queries. | | DbPdoDriver::DONT_PARSE_PARAM | any value | Is this parameter is set with any value, anydataset won't try to parse the SQL to find the values to bind the parameters. | | DbPdoDriver::UNIX_SOCKET | path | PDO will use "unix_socket=" instead of "host=". | e.g. ```php $uri = Uri::getInstanceFromString("sqlite://" . $this->host) - ->withQueryKeyValue(DbPdoDriver::STATEMENT_CACHE, "true") ->withQueryKeyValue(DbPdoDriver::DONT_PARSE_PARAM, ""); ```