Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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

Debug