qb icon indicating copy to clipboard operation
qb copied to clipboard

QB doesn't like returntype = "struct"

Open Daemach opened this issue 2 years ago • 2 comments

Doesn't work:
// this.auditTables = qb.from('tables').get( options={ datasource: 'veritiAudit', returntype: 'struct', columnkey: 'name', cachedwithin: createTimespan(0,2,0,0) } )

Works:
this.auditTables = queryExecute("select * from tables",{},{ datasource: 'veritiAudit', returntype: 'struct', columnkey: 'name', cachedwithin: createTimespan(0,2,0,0) })

Daemach avatar Jun 24 '22 23:06 Daemach