Petr Hahn
Petr Hahn
allow zero values in range filter for Nextras Data Source. Taken from Doctrine datasource
Added Nextras Dbal support so you do not need 2 connections (nette database + nexttras dbal) when using Nextras Dbal as your primary and only DB driver.
Hello, could you add a test query function that simply returns the query without executing it? Nextras\Dbal\Connection.php ``` public function test(string $expression, ...$args): string { array_unshift($args, $expression); return $this->sqlPreprocessor->process($args); }...