You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using Laravel 7.x query builder to perform an insert statement, however, the Oracle database trigger automatically creates a sequence number. I want to do two things:
get the sequence number that the database created.
pass that sequence number via Ajax so I can perform a refresh.
* 8.x:
Bump v8.2.2 🚀
Fix github action error on clone? BadMethodCallException: Call to undefined method Yajra\Oci8\Query\OracleBuilder::clone()
Fix crossJoinSubs query.
Apply fixes from StyleCI
Use protected on unsupported upsert tests.
Apply fixes from StyleCI
Add failing test link to issue #586.
Add all builder possible tests from framework. Add TODO notes on failing tests.
Fix aggregate tests.
Fix compileUnionAggregate and update tests.
Remove unused var.
Fix from query with alias.
Fix fromSub query. Add tests.
Add test for having sql.
Remove table alias in run pagination count query with group. 8.x version of #614 with tests added.
I am using Laravel 7.x query builder to perform an insert statement, however, the Oracle database trigger automatically creates a sequence number. I want to do two things:
public function store(Request $request)
$insert = DB::table('test_table')->insert([
return response()->json(array('message'=> $insert), 200);
}
}
The text was updated successfully, but these errors were encountered: