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
In the SELECT statement, include only the columns you want. And use a WHERE clause. Then choose whether to use execute() with or without a ResultSet, or use queryStream(). Note #158 is still open.
I am getting a the following dbResponse with resultSet as "true" :
dBResponse { rows: undefined,
resultSet:
{ metaData:
[ [Object],
[Object],
[Object],
[Object],
[Object] ] },
outBinds: undefined,
rowsAffected: undefined,
metaData:
[ { name: 'ID' },
{ name: 'CD1' },
{ name: 'CD2' },
{ name: 'CD3' },
{ name: 'CD4' } ] }
is there a way to get data of CD1 column only from the resultSet ?
I dont want the complete data from the resultSet using fetchRowsFromRS method.
The text was updated successfully, but these errors were encountered: