CodeIgniter Forums
CodeIgniter v4.0.4 released - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1)
+--- Forum: News & Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=2)
+--- Thread: CodeIgniter v4.0.4 released (/showthread.php?tid=77054)

Pages: 1 2 3 4 5


RE: CodeIgniter v4.0.4 released - includebeer - 11-30-2021

(11-30-2021, 06:07 AM)junipermahate Wrote: hi, I need help.
Yeah I can see that!  Tongue


RE: CodeIgniter v4.0.4 released - smartkrossover - 12-13-2021

Informative Information on version 4.0.4. Thanks


RE: Problem in getting result in query builder - bernexist - 12-19-2021

Hi there... I'm just a newbie in CI4 and I'm having a problem in terms of results produced by query builder. Here's the scenario:
My table_1 in postgres has 6763 rows but the query builder produces only 6540 rows....
This is my sample code base on the documentation

$db      = \Config\Database::connect();
$builder = $db->table('table_1');
$bus_permit_info2  = $builder->get()->getResult();

dd($bus_permit_info2);


Please help its been almost a week searching for the right answer for this problem.
Thank you in advance....


RE: CodeIgniter v4.0.4 released - AlyssaAmeliaG7 - 03-01-2022

There's a new command() helper that will let you call any CLI commands within your code. This can be useful for testing and for use within cron jobs.

A new command, cache:clear allows you to purge your cache storage from the cli.

The image library now supports webp images, thanks to nicojmb and michalsn.

Testing of the framework has increased, mostly due to the diligent efforts of samsonasik.


RE: CodeIgniter v4.0.4 released - AmberAmey8hH - 03-02-2022

thank you so much for a great job.