yajra / pdo-via-oci8

PHP PDO_OCI functions via OCI8 extension
Other
88 stars 61 forks source link

feat: Added SQLT_BOL to bind type #128

Closed sge-kawa closed 1 year ago

sge-kawa commented 1 year ago

fix #127

Fixed to accept SQLT_BOL.

Usage

$bindings = [
    'p1' => [
        'value' => true,
        'type' => SQLT_BOL,
    ],
];

$result = DB::connection()->executeFunction('FUNC', $bindings);
yajra commented 1 year ago

Released on v3.4.0 🚀 Thanks!