Angel Lai

Results 30 comments of Angel Lai

Make sure your query is correct. ```SQL /* MySQL */ ALTER TABLE table_name RENAME COLUMN old_name TO new_name; /* MariaDB */ ALTER TABLE table_name CHANGE COLUMN old_name TO new_name; ```

The above answer is supported on MySQL 8.0. Just make sure the database can execute the query successfully based on the version. Because `query()` is just executing the query alone...

The double data should be `PDO::PARAM_STR` for database binding, and `PDO::PARAM_INT` is incorrect. For `generate()`, I still think it should handle it as a string with `quote()`, because it indeed...

@chriscct7 You can switch to @orware branch https://github.com/orware/Medoo.git and use it directly.

@haeguri Any update for this issue? This bug still exists on 0.39 and 0.40-dev. This happened since 0.35, and 0.34.1 is fine. We are looking forward to fixing it so...

Here is the screenshot of iOS Safari developer tools. And here is the screenshot of desktop Chrome developer tools. We can see that all CSS variables prefixed with `--vscode` are...

We have `debug()` for a query, `beginDebug()` and `bebugLog()` for debug logging. And logging connection option for `log()` to log all queries. And testMode for testing queries. https://medoo.in/api/new https://medoo.in/api/log https://medoo.in/api/debug

The `` is the column and table syntax for query(). If you want to insert a value included ``, it's recommended to use prepared statement. It will be safer. Check...

In SQL, the alias character is accepted `A-Z`, `0-9`, and `_`, other characters are not recommended. And there's no need to use the alias for your case. You can refer...