We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e479cc7 commit 4b811ccCopy full SHA for 4b811cc
src/Statement.php
@@ -56,16 +56,17 @@ public function __construct(Session $session, $yql)
56
57
/**
58
* @param array $parameters
59
+ * @param array $options
60
* @return bool|QueryResult
61
* @throws \YdbPlatform\Ydb\Exception
62
*/
- public function execute(array $parameters = [])
63
+ public function execute(array $parameters = [], array $options = [])
64
{
65
$q = new Query([
66
'yql_text' => $this->yql,
67
]);
68
- return $this->session->query($q, $this->prepareParameters($parameters));
69
+ return $this->session->query($q, $this->prepareParameters($parameters), $options);
70
}
71
72
0 commit comments