forked from TimelordUK/node-sqlserver-v8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpromises.ts
252 lines (234 loc) · 6.32 KB
/
promises.ts
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
import {
PoolOptions,
SqlClient,
Pool,
Connection,
QueryAggregatorResults,
ConnectionPromises,
BulkTableMgr,
Query,
QueryDescription
} from 'msnodesqlv8/types'
const sql: SqlClient = require('msnodesqlv8')
const { TestEnv } = require('../../../test/env/test-env')
const env = new TestEnv()
async function run (): Promise<void> {
await env.open()
await cancelQuery()
await openSelectClose()
await proc()
await adhocProc()
await adhocQuery()
await pool()
await table()
await prepared()
await env.close()
}
run().then(() => {
console.log('finished')
}).catch(e => {
console.error(e)
})
async function cancelQuery (): Promise<any> {
const connStr = env.connectionString
const conn: Connection = await sql.promises.open(connStr)
const waitsql = 'waitfor delay \'00:00:20\';'
const q: Query = conn.query(waitsql)
q.on('submitted', (description: QueryDescription) => {
console.log(JSON.stringify(description, null, 4))
})
q.on('error', (e: Error) => {
console.error(e)
})
q.on('done', () => {
console.log('done')
})
q.on('free', () => {
console.log('free')
})
await q.promises.cancel()
}
async function openSelectClose (): Promise<void> {
try {
const connStr = env.connectionString
const conn: Connection = await sql.promises.open(connStr)
const res: QueryAggregatorResults = await conn.promises.query('select @@SPID as spid')
console.log(JSON.stringify(res, null, 4))
await conn.promises.close()
} catch (e) {
console.log(e)
}
}
async function adhocQuery (): Promise<void> {
try {
const connStr = env.connectionString
const res: QueryAggregatorResults = await sql.promises.query(connStr, 'select @@SPID as spid')
const first = res.first
console.log(`ashoc spid ${first[0].spid}`)
} catch (e) {
console.log(e)
}
}
async function pool (): Promise<void> {
try {
const connStr = env.connectionString
const size = 4
const options: PoolOptions = {
connectionString: connStr,
ceiling: size
}
const pool: Pool = new sql.Pool(options)
await pool.promises.open()
const all = Array(size * 2).fill(0).map(async (_, i) => await pool.promises.query(`select ${i} as i, @@SPID as spid`))
const promised: QueryAggregatorResults[] = await Promise.all(all)
const res = promised.map(r => r.first[0].spid)
await pool.promises.close()
console.log(`pool spids ${res.join(', ')}`)
} catch (e) {
console.log(e)
}
}
interface ProcDef {
name: string
sql: string
}
const sampleProc: ProcDef = {
name: 'sp_test',
sql: `create PROCEDURE sp_test @param VARCHAR(50)
AS
BEGIN
RETURN LEN(@param);
END
`
}
async function adhocProc (): Promise<void> {
try {
const connStr = env.connectionString
const proc = env.procTest(sampleProc)
await proc.create()
const msg = 'hello world'
const res: QueryAggregatorResults = await sql.promises.callProc(connStr, sampleProc.name, {
param: msg
})
await proc.drop()
console.log(`adhocProc returns ${res.returns} from param '${msg}''`)
} catch (e) {
console.log(e)
}
}
async function proc (): Promise<void> {
try {
const connStr = env.connectionString
const proc = env.procTest(sampleProc)
await proc.create()
const conn: Connection = await sql.promises.open(connStr)
const promises: ConnectionPromises = conn.promises
const msg = 'hello world'
const res: QueryAggregatorResults = await promises.callProc(sampleProc.name, {
param: msg
})
console.log(`proc returns ${res.returns} from param '${msg}''`)
await proc.drop()
await promises.close()
} catch (e) {
console.log(e)
}
}
function getInsertVec (rows: number): SampleRecord[] {
const testDate = new Date('Mon Apr 26 2021 22:05:38 GMT-0500 (Central Daylight Time)')
const expected = []
for (let i = 0; i < rows; ++i) {
expected.push(new SampleRecord(
i,
testDate,
`${i}`,
`testing${i + 1}2Data`,
`testing${i + 2}2Data`,
`testing${i + 3}2Data`
))
}
return expected
}
class SampleRecord {
constructor (public id: number, public d1: Date, public s1: string, public s2: string, public s3: string, public s4: string) {
}
asArray (): any[] {
return [
this.id,
this.d1,
this.s1,
this.s2,
this.s3,
this.s4
]
}
}
const sampleTableDef = {
tableName: 'test_table_bulk',
columns: [
{
name: 'id',
type: 'INT PRIMARY KEY'
},
{
name: 'd1',
type: 'datetime'
},
{
name: 's1',
type: 'VARCHAR (255) NOT NULL'
},
{
name: 's2',
type: 'VARCHAR (100) NOT NULL'
},
{
name: 's3',
type: 'VARCHAR (50) NOT NULL'
},
{
name: 's4',
type: 'VARCHAR (50) NOT NULL'
}
]
}
async function table (): Promise<void> {
try {
const connStr = env.connectionString
const connection = await sql.promises.open(connStr)
const tm = env.bulkTableTest(sampleTableDef, connection)
const table: BulkTableMgr = await tm.create()
const vec: SampleRecord[] = getInsertVec(10)
console.log(`table = ${tm.createTableSql}`)
await table.promises.insert(vec)
const read = await connection.promises.query(tm.selectSql)
console.log(`table ${read.first.length} rows from ${tm.tableName}`)
console.log(JSON.stringify(read.first, null, 4))
await tm.drop()
await connection.promises.close()
} catch (e) {
console.log(e)
}
}
async function prepared (): Promise<void> {
try {
const connStr = env.connectionString
const connection = await sql.promises.open(connStr)
const tm = env.bulkTableTest(sampleTableDef, connection)
const vec: SampleRecord[] = getInsertVec(2)
await tm.create()
console.log(`prepared = ${tm.createTableSql}`)
const promises: ConnectionPromises = connection.promises
const preparedStatement = await promises.prepare(tm.insertParamsSql)
await preparedStatement.promises.query(vec[0].asArray())
await preparedStatement.promises.query(vec[1].asArray())
const read = await promises.query(tm.selectSql)
console.log(`prepared ${read.first.length} rows from ${tm.tableName}`)
console.log(JSON.stringify(read.first, null, 4))
await preparedStatement.promises.free()
await tm.drop()
await promises.close()
} catch (e) {
console.log(e)
}
}