cancel
Showing results for 
Search instead for 
Did you mean: 

getting row data

Former Member
0 Kudos

Hello

Can I get all row data from db data source or matrix at once.

I try to avoid looping column by column.

Plus what are the uses for db data source offset property?

Thanks

Kamil

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Kamil,

In a matrix, its always column wise, never row wise.

If you want the cell value, then, you can go individually as,

oMatrix.Columns.Item(" ").Cells.Item(" ").Specific.Value

otherwise, not possible column wise.

Regards,

Satish.

Former Member
0 Kudos

Thanks Satish

But I need row wise.

It don't need to be matrix. I try to implement custom sorting and column wise method would be slow.

Kamil

Former Member
0 Kudos

Hi Kamil,

If you feel, matrix is not mandatory, then, you can use grid. There sorting is all much easier, since, its is populated using a query and you can accordingly handle it.

Regards,

Satish.