yajra / pdo-via-oci8

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

[3.x] Add method to support oci_set_client_identifier #102

Closed yajra closed 2 years ago

yajra commented 2 years ago

Fix https://github.com/yajra/laravel-oci8/issues/453 Fix #99

Usage

$con = new Oci8($dsn, $user, $pwd);
$con->setClientIdentifier('my-identifier');
Sevyls commented 2 years ago

Thanks