nfaiz/pdoifx

CodeIgniter 4 Informix 数据库包

v0.9.6 2024-04-22 08:41 UTC

This package is auto-updated.

Last update: 2024-09-22 09:44:01 UTC


README

GitHub GitHub repo size Hits

PdoIfx

描述

使用 PDO Informix 扩展为 CodeIgniter 4 提供的 Informix 包装器。

文档

注意

这是一个 INFORMIX 的包装器。不要期望它的工作方式与 CodeIgniter 4 内置数据库函数完全相同。

示例用法

$builder = ifx_connect();

$result = $builder->table('users')
    ->select('id, name')
    ->where('age', '>', 18)
    ->orderBy('id', 'desc')
    ->limit(2)
    ->getResult();

d($result);

屏幕截图

Debug