forked from TimelordUK/node-sqlserver-v8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreaming.js
78 lines (65 loc) · 1.73 KB
/
streaming.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
const { TestEnv } = require('../../test/env/test-env')
const env = new TestEnv()
function dispatch (con, query) {
return new Promise((resolve, reject) => {
let metadata = null
let currentRow = null
let lastColumn = 0
const d = new Date()
const q = con.query(query)
const rows = []
q.on('meta', (meta) => {
metadata = meta
currentRow = [metadata.length]
lastColumn = metadata.length - 1
console.log(`meta = ${JSON.stringify(meta, null, 4)}`)
})
q.on('submitted', (m) => {
const elapsed = new Date() - d
console.log(`submitted ${m.query_str} elapsed ${elapsed} ms`)
})
q.on('column', (index, data) => {
console.log(`column [${index}] = ${JSON.stringify(data, null, 4)}`)
currentRow[index] = data
if (index === lastColumn) {
currentRow = [metadata.length]
rows.push(currentRow)
}
})
q.on('row', (index) => {
console.log(`row [${index}]`)
})
q.on('error', err => {
reject(err)
})
q.on('info', i => {
console.log(i)
})
q.on('done', () => {
console.log('done')
resolve(rows)
})
q.on('free', () => {
console.log('free')
})
})
}
async function run () {
await env.open()
const connectionString = env.connectionString
console.log(`run with ${connectionString}`)
const conn = env.theConnection
for (let i = 0; i < 5; ++i) {
const d = new Date()
const rows = await dispatch(conn, 'select top 5 * from master..syscolumns')
const elapsed = new Date() - d
console.log(`${rows.length} rows returned elapsed ${elapsed}`)
}
await env.close()
return []
}
run().then(() => {
console.log('finished')
}).catch(err => {
console.log(err)
})