![]() |
04-29-2024, 01:54 AM
(This post was last modified: 04-29-2024, 02:00 AM by objecttothis. Edit Reason: Added information )
CodeIgniter 4.5.1
PHP 8.2 PHP Code: $builder = $this->db->table('sales_items'); Generates Code: SELECT `name`, CONCAT(IFNULL(ROUND(percent, 2), 0), '%') AS percent, `ospos_sales`.`ospos_``sale_id` AS `sale_id`, `ospos_sales`.`foo` AS `subtotal` The QueryBuilder parser is incorrectly appending the database prefix to the column name sale_id and it's escaping the column moniker after the 'AS' keyword in the second and third column names. If I add `false` as the 2nd parameter in the select() call PHP Code: $builder = $this->db->table('sales_items'); It generates Code: SELECT name, CONCAT(IFNULL(ROUND(percent, 2), 0), '%') AS percent, `sales`.`ospos_sale_id` AS `sale_id`, sales.foo AS subtotal For some reason it didn't get the memo about not escaping because it still escaped part of the query and it's now adding the database prefix to the column name but NOT adding it to the table name. I tried removing the aliasing from the query, but that had no effect on the problems. Removing the CONCAT SQL function call gets rid of the problems with prepending the prefix to the column but not the escaping problem PHP Code: $builder = $this->db->table('sales_items'); yields Code: SELECT name, `sales`.`ospos_sale_id` AS `sale_id`, sales.foo AS subtotal Why is QueryBuilder->select() escaping these column and table names when the 2nd parameter of select is false? Even wrapping the contents of the select() in a RawSql() instance still has it prepending the prefix in the wrong places. |
Messages In This Thread |
Querybuilder select() parsing problems - by objecttothis - 04-29-2024, 01:54 AM
RE: Querybuilder select() parsing problems - by kenjis - 04-29-2024, 03:27 AM
RE: Querybuilder select() parsing problems - by objecttothis - 05-06-2024, 12:33 AM
|