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
Information
Describe the Problem Library doesn't produce any warning/error/exception when using wrong syntax for column definition.
Detail Code
$medoo_db->get('sometable', ['id', 'column AS alias_name'], ['id' => 1]);
Expected output I would expect this to crash/fail as medoo library has different syntax for defining column aliases: ['column (alias_name)'].
The text was updated successfully, but these errors were encountered:
change to
$medoo_db->get('sometable', ['id', 'column(alias_name)'], ['id' => 1]);
Sorry, something went wrong.
@deawx I think you didn't read the issue description properly.
No branches or pull requests
Information
Describe the Problem
Library doesn't produce any warning/error/exception when using wrong syntax for column definition.
Detail Code
Expected output
I would expect this to crash/fail as medoo library has different syntax for defining column aliases: ['column (alias_name)'].
The text was updated successfully, but these errors were encountered: