nfaiz / pdoifx
CodeIgniter 4 Informix Database Package
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/nfaiz/pdoifx
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);