https://github.com/nfaiz/pdoifx
CodeIgniter 4 Informix Database Query Builder
https://github.com/nfaiz/pdoifx
codeigniter codeigniter4 informix pdo query-builder
Last synced: 7 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 (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-17T08:41:51.000Z (7 months ago)
- Last Synced: 2024-12-17T09:38:03.800Z (7 months ago)
- Topics: codeigniter, codeigniter4, informix, pdo, query-builder
- Language: PHP
- Homepage:
- Size: 87.9 KB
- Stars: 2
- 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
![]()