cancel
Showing results for 
Search instead for 
Did you mean: 

DATA SOURCE

Former Member
0 Kudos

HI Experts,

I execurte the query and store the records in Data Source itok But now i want to read the data Sorce values and update the existing column and to add the some columns which are not in query. After completion of this i want to bind it to MAtrix.

Is it possible,

With Regards,

M.Thippa Reddy

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

you can try to add this new columns in your query like this " select ' ' as 'nome da coluna' "

so after you store the records you can update the values from the columns that you want


for (int i = 0; i < datasource.size -1; i++)
{
datasource.SetValue("COLUMN NAME", i, NEW VALUE);
}

Answers (0)