nfaiz/pdoifx

CodeIgniter 4 Informix Database Package

Maintainers

Details

github.com/nfaiz/pdoifx

Source

Issues

Installs: 29

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/nfaiz/pdoifx

v0.9.8 2025-03-19 05:59 UTC

This package is auto-updated.

Last update: 2025-10-19 07:10:01 UTC


README

GitHub GitHub repo size Hits

PdoIfx

Description

Informix wrapper for CodeIgniter 4 using PDO Informix extension.

Docs

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);

Screenshot

Debug