skip to Main Content

Looping multyple DB connections in Laravel

I am summing the columns from different tables each in a different database. Created the models for each of the 8 connections and added them to the controller. use AppModelsobjectMapping1; use AppModelsobjectMapping2; use AppModelsobjectMapping3; use AppModelsobjectMapping4; use AppModelsobjectMapping5; use AppModelsobjectMapping6;…

VIEW QUESTION

operation is invalid due to current state asp.net

im trying to update my db doing: int index = grdExcUsePolicy.EditIndex; GridViewRow row = grdExcUsePolicy.Rows[index]; string id = ((Label)row.FindControl("lblId")).Text; String name = ((TextBox)row.FindControl("txtName")).Text; String created = ((TextBox)row.FindControl("txtCreated")).Text; if (gridUtil.getInsertMode()) { } else { GeneralDbExecuterService.executeSqlNonQuery(string.Format("UPDATE EXCEPTIONAL_USE_POLICY_PARAM SET NAME = '{0}', CREATED_DATE…

VIEW QUESTION

Laravel eloquent find in array of objects column

I have a table called services with multiple columns and one column named staff_assigned with this content: [{"user_id":"15549","price":"100"},{"user_id":"15548","price":"300"},{"user_id":"15552","price":"95"},{"user_id":"15553","price":"600"}] How can I find all services where user_id is 15548 with Laravel eloquent? Note that Service::where('staff_assign->user_id', "15548")->get(); doesn't work because column contains…

VIEW QUESTION
Back To Top
Search