Skip to main content
1-Visitor
May 15, 2017
Solved

How to assign Query results to Datashape

  • May 15, 2017
  • 1 reply
  • 1448 views

Hi ,

I have a query result like below,

Column1

Row1

Row2

Row3

I have a Datashape with 3 fields - Field1, Field2 , Field3.

How to assign the Row1 to Field1 ?

Thanks in advance for your answer.

Best answer by vr-6

Hi,

Let me assume you are storing query data to variable "info" and your datashape "datashape"

Create a new Object and add values to fields.

var newEntry = new Object();

newEntry.Field1= info.rows[0].Column1

newEntry.Field2= info.rows[1].Column1

newEntry.Field3= info.rows[2].Column1

datashape.AddRow(newEntry); // Add Object to DataShape

1 reply

vr-61-VisitorAnswer
1-Visitor
May 15, 2017

Hi,

Let me assume you are storing query data to variable "info" and your datashape "datashape"

Create a new Object and add values to fields.

var newEntry = new Object();

newEntry.Field1= info.rows[0].Column1

newEntry.Field2= info.rows[1].Column1

newEntry.Field3= info.rows[2].Column1

datashape.AddRow(newEntry); // Add Object to DataShape