You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using placeholders in a select clause for a prepared statement, the parser stops at the first placeholder. For example, parsing "SELECT 1, 2, ?, 3" will include the expressions 1 and 2 in the SelectStatement object, but not the placeholder or 3.
We should also support other parameters like :foo
I am sure there is some code about this somewhere
But the current code at phpMyAdmin web is not the best. See "link parameters" on the SQL query box
Uh oh!
There was an error while loading. Please reload this page.
When using placeholders in a select clause for a prepared statement, the parser stops at the first placeholder. For example, parsing "SELECT 1, 2, ?, 3" will include the expressions 1 and 2 in the SelectStatement object, but not the placeholder or 3.
The text was updated successfully, but these errors were encountered: