text Yajra / Oci8 laravel适配器提示和技巧

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Yajra / Oci8 laravel适配器提示和技巧相关的知识,希望对你有一定的参考价值。

If want to update data to oracle db that has lowercase column 
eg: password use DB::update() facade 

example : 

 $update_process = DB::update('UPDATE V2_SPK_EMPLOYEES SET "password" = ? where ID = ?', [bcrypt('zakat123'), $request->userID]);
                return $update_process;

以上是关于text Yajra / Oci8 laravel适配器提示和技巧的主要内容,如果未能解决你的问题,请参考以下文章