Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nfaiz/pdoifx
CodeIgniter 4 Informix Database Query Builder
https://github.com/nfaiz/pdoifx
codeigniter codeigniter4 informix pdo query-builder
Last synced: about 1 month 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 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-17T08:41:51.000Z (about 1 month ago)
- Last Synced: 2024-12-17T09:38:03.800Z (about 1 month 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
![GitHub](https://img.shields.io/github/license/nfaiz/pdoifx)
![GitHub repo size](https://img.shields.io/github/repo-size/nfaiz/pdoifx?label=size)
![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=nfaiz/pdoifx)# 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