Informix wrapper for CodeIgniter 4 using PDO Informix extension.
- Installation
- Usage
- Readme
Note
This is a wrapper for INFORMIX. Don't expect it to work exactly like the CodeIgniter 4 database built-in function.
$builder = ifx_connect();
$result = $builder->table('users')
->select('id, name')
->where('age', '>', 18)
->orderBy('id', 'desc')
->limit(2)
->getResult();
d($result);