nfaiz / pdoifx
CodeIgniter 4 Informix Database Package
v0.9.6
2024-04-22 08:41 UTC
Requires
- nfaiz/dbtoolbar: ^1.0.0
README
PdoIfx
Description
Informix wrapper for CodeIgniter 4 using PDO Informix extension.
Docs
- 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.
Example Usage
$builder = ifx_connect(); $result = $builder->table('users') ->select('id, name') ->where('age', '>', 18) ->orderBy('id', 'desc') ->limit(2) ->getResult(); d($result);