Snowflake report
-
@bjrmatos @jan_blaha any update on this issue?
-
Just name the
res
differently....const resFromSql = await connection.execute({
I'm sorry but this is more about javascript general development than jsreport.
We would like to focus this forum primarily on jsreport.
-
@jan_blaha thanks the fixing the error but still don't have data
const resFromSql = await connection.execute({ sqlText: 'select STATE, STATE_CREDITS, STATE_ACTUAL_CASH, STATE_UNREVEALED, STATE_CUSTOMER_FUNDS FROM SUPERDRAFT_PROD.SD_REPORTS.VW_DAILY_STATE_BALANCE_SDPRO;' }); req.data.rows = res }
-
@djbrody you are missing to rename also the places where your old
res
variable was used, you should update it to the new nameresFromSql
.also you seem to use the name
detail
on your template, so change in the script.rows
->.detail
, see bellow for how it should look like:const resFromSql = await connection.execute({ sqlText: 'select STATE, STATE_CREDITS, STATE_ACTUAL_CASH, STATE_UNREVEALED, STATE_CUSTOMER_FUNDS FROM SUPERDRAFT_PROD.SD_REPORTS.VW_DAILY_STATE_BALANCE_SDPRO;' }); req.data.detail = resFromSql
please try to analyze your code deeply if you hit any other error.
-
@bjrmatos yes I am doing too many things, at the same time so sorry that I'm asking dumb questions.
if I change the
const resFromSql = await connection.execute({ sqlText: 'select * FROM SUPERDRAFT_PROD.SD_REPORTS.VW_DAILY_STATE_BALANCE_SDPRO;' }); req.data.detail = resFromSql }
if I use this
{{#each .detail}} or {{#each .row}}
then I get
Error when evaluating engine handlebars for template /Prod11/Daily_State_Balance each.detail doesn't match each - 55:15 (sandbox.js line 41:18) Error: each.detail doesn't match each - 55:15 at validateClose (/home/ubuntu/jsreportapp/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js:28:11) at Object.prepareBlock (/home/ubuntu/jsreportapp/node_modules/handlebars/dist/cjs/handlebars/compiler/helpers.js:142:5) at Object.anonymous (/home/ubuntu/jsreportapp/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js:65:33) at Parser.parse (/home/ubuntu/jsreportapp/node_modules/handlebars/dist/cjs/handlebars/compiler/parser.js:367:48) at parseWithoutProcessing (/home/ubuntu/jsreportapp/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js:46:33) at HandlebarsEnvironment.parse (/home/ubuntu/jsreportapp/node_modules/handlebars/dist/cjs/handlebars/compiler/base.js:52:13) at Object.precompile (/home/ubuntu/jsreportapp/node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js:485:17) at HandlebarsEnvironment.hb.precompile (/home/ubuntu/jsreportapp/node_modules/handlebars/dist/cjs/handlebars.js:42:40) at Object.compile (/home/ubuntu/jsreportapp/node_modules/@jsreport/jsreport-handlebars/lib/handlebarsEngine.js:33:52) at Object.compile (/home/ubuntu/jsreportapp/node_modules/@jsreport/jsreport-handlebars/lib/worker.js:25:43) at executionFn (/home/ubuntu/jsreportapp/node_modules/@jsreport/jsreport-core/lib/worker/render/executeEngine.js:189:42) at sandbox.js:41:18 info+0Render request 39 queued for execution and waiting for availible worker info+10Starting rendering request 39 (user: admin) info+1Rendering template { name: Daily_State_Balance, recipe: html-to-xlsx, engine: handlebars, preview: true } debug+0Data item not defined for this template. debug+8Executing script prod_daily_state_balance (beforeRender) debug+381Base url not specified, skipping its injection.
-
{{#each detail}
gives all the lines of content as
NaN
Data item not defined for this template.
-
what is the result in the logs if you add this to your script (the console.log)?
console.log(resFromSql) req.data.detail = resFromSql
this should clarify what is the SQL query returning, perhaps the shape of what the execute query returns does not match with what your template expects, it sounds to me that this is the main problem now.
-
2022-07-12T20:33:09.165Z - info: Render request 48 queued for execution and waiting for availible worker rootId=6zazpyz7xu4jclu, id=6zazpyz7xu4jclu 2022-07-12T20:33:09.181Z - info: Starting rendering request 48 (user: admin) rootId=6zazpyz7xu4jclu, id=6zazpyz7xu4jclu 2022-07-12T20:33:09.181Z - info: Rendering template { name: Daily_State_Balance, recipe: html-to-xlsx, engine: handlebars, preview: true } rootId=6zazpyz7xu4jclu, id=6zazpyz7xu4jclu 2022-07-12T20:33:09.572Z - info: html-to-xlsx generation is starting rootId=6zazpyz7xu4jclu, id=6zazpyz7xu4jclu 2022-07-12T20:33:09.936Z - info: html-to-xlsx generation was finished rootId=6zazpyz7xu4jclu, id=6zazpyz7xu4jclu 2022-07-12T20:33:10.124Z - info: Rendering request 48 finished in 959 ms rootId=6zazpyz7xu4jclu, id=6zazpyz7xu4jclu
Data item not defined for this template. debug+7Executing script prod_daily_state_balance (beforeRender) debug+399RowStatementPreExec { _events: [Object: null prototype] {}, _eventsCount: 0, _maxListeners: undefined, getSqlText: [Function (anonymous)], getStatus: [Function (anonymous)], getColumns: [Function (anonymous)], getColumn: [Function (anonymous)], getNumRows: [Function (anonymous)], getNumUpdatedRows: [Function (anonymous)], getSessionState: [Function (anonymous)], getRequestId: [Function (anonymous)], getStatementId: [Function (anonymous)], cancel: [Function (anonymous)], fetchRows: [Function (anonymous)], streamRows: [Function (anonymous)], [Symbol(kCapture)]: false } debug+1Base url not specified, skipping its injection. debug+0Rendering engine handlebars
-
according to the
snowflake-sdk
docs you are missing code to consume the rows.checks the docs of the snowflake carefully, by doing a general check I think the code you need should look like this in your script, but again, if it does not work, check the docs of the snowflake-sdk.
const statement = await connection.execute({ sqlText: 'select STATE, STATE_CREDITS, STATE_ACTUAL_CASH, STATE_UNREVEALED, STATE_CUSTOMER_FUNDS FROM SUPERDRAFT_PROD.SD_REPORTS.VW_DAILY_STATE_BALANCE_SDPRO;' }); const rows = [] const rowsStream = statement.streamRows() await new Promise((resolve, reject) => { rowsStream.on('data', function (row) { rows.push(row) }) rowsStream.on('end', function (row) { if (row) { rows.push(row) } }) rowsStream.on('error', function (streamError) { reject(streamError) }) }) req.data.detail = rows
-
info+0Render request 52 queued for execution and waiting for availible worker info+23Starting rendering request 52 (user: admin) info+0Rendering template { name: Daily_State_Balance, recipe: html-to-xlsx, engine: handlebars, preview: true } debug+2Data item not defined for this template. debug+4Executing script prod_daily_state_balance (beforeRender) warn+351Error when processing render request 52 Error when evaluating custom script /Prod11/prod_daily_state_balance Unable to perform operation because a connection was never established. ClientError: Unable to perform operation because a connection was never established. at createError (/home/ubuntu/jsreportapp/node_modules/snowflake-sdk/lib/errors.js:535:15) at Object.exports.createClientError (/home/ubuntu/jsreportapp/node_modules/snowflake-sdk/lib/errors.js:350:10) at /home/ubuntu/jsreportapp/node_modules/snowflake-sdk/lib/services/sf.js:977:21 at processTicksAndRejections (node:internal/process/task_queues:78:11)
code
// Use the "beforeRender" or "afterRender" hook // to manipulate and control the report generation async function beforeRender(req, res) { // Load the Snowflake Node.js driver. var snowflake = require('snowflake-sdk'); // Create a Connection object that we can use later to connect. var connection = snowflake.createConnection({ account: 'gm36774.eu-west-2', username: '*********', password: '*********' }); const statement = connection.execute({ sqlText: 'select STATE, STATE_CREDITS, STATE_ACTUAL_CASH, STATE_UNREVEALED, STATE_CUSTOMER_FUNDS FROM SUPERDRAFT_PROD.SD_REPORTS.VW_DAILY_STATE_BALANCE_SDPRO;' }); const rows = [] const rowsStream = statement.streamRows() await new Promise((resolve, reject) => { rowsStream.on('data', function (row) { rows.push(row) }) rowsStream.on('end', function (row) { if (row) { rows.push(row) } }) rowsStream.on('error', function (streamError) { reject(streamError) }) }) req.data.detail = rows }