Home
last modified time | relevance | path

Searched refs:resultRows (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/ext/wasm/
H A Ddemo-worker1-promiser.js108 resultRows: [], columnNames: [] property
111 T.assert(0===ev.resultRows.length)
117 resultRows: [], columnNames: [], property
120 T.assert(3===ev.resultRows.length)
121 .assert(1===ev.resultRows[0][0])
129 resultRows: [], columnNames: [], property
134 .assert(1===ev.resultRows[0].a)
135 .assert(6===ev.resultRows[2].b)
148 resultRows: [], property
233 resultRows: [] property
[all …]
H A Ddemo-worker1.js159 resultRows: [], columnNames: [] property
162 T.assert(0===ev.resultRows.length)
170 T.assert(3===ev.resultRows.length)
171 .assert(1===ev.resultRows[0][0])
172 .assert(6===ev.resultRows[2][1])
179 resultRows: [], columnNames: [], property
184 .assert(1===ev.resultRows[0].a)
185 .assert(6===ev.resultRows[2].b)
191 resultRows: [], property
217 resultRows: [] property
[all …]
H A Ddemo-123.js152 let resultRows = [];
156 resultRows: resultRows property
158 log("Result rows:",JSON.stringify(resultRows,undefined,2));
213 resultRows: rows property
H A Dtester1.js1267 resultRows: list, property
1551 const resultRows = [];
1553 resultRows, field
1562 T.assert(rc === resultRows)
1587 const resultRows = [];
1597 resultRows field
1599 T.assert(3===resultRows.length)
1600 .assert(2===resultRows[1]);
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-oo1.js395 if(!opt.resultRows) opt.resultRows = [];
396 out.returnVal = ()=>opt.resultRows;
409 if(opt.callback || opt.resultRows){
415 if(Array.isArray(opt.resultRows)){
769 const resultRows =
770 Array.isArray(opt.resultRows) ? opt.resultRows : undefined;
827 if(resultRows) resultRows.push(row);
H A Dsqlite3-api-worker1.js516 if(rc.callback || Array.isArray(rc.resultRows)){