Skip to content

nfaiz/pdoifx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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