https://github.com/nfaiz/pdoifx
CodeIgniter 4 Informix Database Query Builder
https://github.com/nfaiz/pdoifx
codeigniter codeigniter4 informix pdo query-builder
Last synced: 4 months ago
JSON representation
CodeIgniter 4 Informix Database Query Builder
- Host: GitHub
- URL: https://github.com/nfaiz/pdoifx
- Owner: nfaiz
- License: mit
- Created: 2021-08-16T12:42:06.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-19T06:01:26.000Z (9 months ago)
- Last Synced: 2025-07-22T13:55:18.816Z (5 months ago)
- Topics: codeigniter, codeigniter4, informix, pdo, query-builder
- Language: PHP
- Homepage:
- Size: 102 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README



# PdoIfx
## Description
Informix wrapper for CodeIgniter 4 using PDO Informix extension.
## Docs
* [Installation](docs/INSTALLATION.md)
* [Usage](docs/USAGE.md)
* 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
```php
$builder = ifx_connect();
$result = $builder->table('users')
->select('id, name')
->where('age', '>', 18)
->orderBy('id', 'desc')
->limit(2)
->getResult();
d($result);
```
## Screenshot