We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In PDO you can bind named params bindValue('something', 1, PDO::TYPE);
So you can use ResultSet like this
$query = 'SELECT * FROM table WHERE id = :something'; $params[':something'] = 1; $resultSet = new ResultSet($connection, $query, $params); $connection->onQuery($connection, $resultSet);// log binded param query to Tracy
Problem is in Nette\Bridges\DatabaseTracy\ConnectionPanel template which invoke Helpers::dumpSql()
This helper does not support named parameters. Tracy result is:
SELECT * FROM table WHERE id = :something
The text was updated successfully, but these errors were encountered:
Helpers::dumpSql() should parse named params nette#77
cd8b6df
duplicate with #78
Sorry, something went wrong.
No branches or pull requests
In PDO you can bind named params bindValue('something', 1, PDO::TYPE);
So you can use ResultSet like this
Problem is in Nette\Bridges\DatabaseTracy\ConnectionPanel template which invoke Helpers::dumpSql()
This helper does not support named parameters. Tracy result is:
The text was updated successfully, but these errors were encountered: