forked from snowflakedb/snowflake-connector-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
789 lines (665 loc) · 25.5 KB
/
index.d.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
/*
* Copyright (c) 2015-2024 Snowflake Computing Inc. All rights reserved.
*/
/**
* The snowflake-sdk module provides an instance to connect to the Snowflake server
* @see [source] {@link https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver}
*/
declare module 'snowflake-sdk' {
export const enum RowMode {
ARRAY = 'array',
OBJECT = 'object',
OBJECT_WITH_RENAMED_DUPLICATED_COLUMNS = 'object_with_renamed_duplicated_columns',
}
export const enum LogLevel {
ERROR = 'ERROR',
WARN = 'WARN',
INFO = 'INFO',
DEBUG = 'DEBUG',
TRACE = 'TRACE',
}
export const enum DataType {
String = 'String',
Boolean = 'Boolean',
Number = 'Number',
Date = 'Date',
JSON = 'JSON',
Buffer = 'Buffer',
}
const enum StatementStatus {
Fetching = "fetching",
Complete = "complete",
}
const enum QueryStatus {
RUNNING = 'RUNNING',
ABORTING = 'ABORTING',
SUCCESS = 'SUCCESS',
FAILED_WITH_ERROR = 'FAILED_WITH_ERROR',
ABORTED = 'ABORTED',
QUEUED = 'QUEUED',
FAILED_WITH_INCIDENT = 'FAILED_WITH_INCIDENT',
DISCONNECTED = 'DISCONNECTED',
RESUMING_WAREHOUSE = 'RESUMING_WAREHOUSE',
// purposeful typo.Is present in QueryDTO.java
QUEUED_REPAIRING_WAREHOUSE = 'QUEUED_REPARING_WAREHOUSE',
RESTARTED = 'RESTARTED',
BLOCKED = 'BLOCKED',
NO_DATA = 'NO_DATA',
}
const enum ErrorCode {
// 400001
ERR_INTERNAL_ASSERT_FAILED = 400001,
ERR_UNSUPPORTED_NODE_JS_VERSION = 400002,
// 401001
ERR_SF_NETWORK_COULD_NOT_CONNECT = 401001,
ERR_SF_RESPONSE_FAILURE = 401002,
ERR_SF_RESPONSE_NOT_JSON = 401003,
ERR_SF_RESPONSE_INVALID_TOKEN = 401004,
// 402001
ERR_LARGE_RESULT_SET_NETWORK_COULD_NOT_CONNECT = 402001,
ERR_LARGE_RESULT_SET_RESPONSE_FAILURE = 402002,
// 403001
ERR_GLOBAL_CONFIGURE_INVALID_LOG_LEVEL = 403001,
ERR_GLOBAL_CONFIGURE_INVALID_INSECURE_CONNECT = 403002,
ERR_GLOBAL_CONFIGURE_INVALID_OCSP_MODE = 403003,
ERR_GLOBAL_CONFIGURE_INVALID_JSON_PARSER = 403004,
ERR_GLOBAL_CONFIGURE_INVALID_XML_PARSER = 403005,
ERR_GLOBAL_CONFIGURE_INVALID_KEEP_ALIVE = 403006,
// 404001
ERR_CONN_CREATE_MISSING_OPTIONS = 404001,
ERR_CONN_CREATE_INVALID_OPTIONS = 404002,
ERR_CONN_CREATE_MISSING_USERNAME = 404003,
ERR_CONN_CREATE_INVALID_USERNAME = 404004,
ERR_CONN_CREATE_MISSING_PASSWORD = 404005,
ERR_CONN_CREATE_INVALID_PASSWORD = 404006,
ERR_CONN_CREATE_MISSING_ACCOUNT = 404007,
ERR_CONN_CREATE_INVALID_ACCOUNT = 404008,
ERR_CONN_CREATE_MISSING_ACCESS_URL = 404009,
ERR_CONN_CREATE_INVALID_ACCESS_URL = 404010,
ERR_CONN_CREATE_INVALID_WAREHOUSE = 404011,
ERR_CONN_CREATE_INVALID_DATABASE = 404012,
ERR_CONN_CREATE_INVALID_SCHEMA = 404013,
ERR_CONN_CREATE_INVALID_ROLE = 404014,
ERR_CONN_CREATE_MISSING_PROXY_HOST = 404015,
ERR_CONN_CREATE_INVALID_PROXY_HOST = 404016,
ERR_CONN_CREATE_MISSING_PROXY_PORT = 404017,
ERR_CONN_CREATE_INVALID_PROXY_PORT = 404018,
ERR_CONN_CREATE_INVALID_STREAM_RESULT = 404019,
ERR_CONN_CREATE_INVALID_FETCH_AS_STRING = 404020,
ERR_CONN_CREATE_INVALID_FETCH_AS_STRING_VALUES = 404021,
ERR_CONN_CREATE_INVALID_REGION = 404022,
ERR_CONN_CREATE_INVALID_KEEP_ALIVE = 404023,
ERR_CONN_CREATE_INVALID_KEEP_ALIVE_HEARTBEAT_FREQ = 404024,
ERR_CONN_CREATE_INVALID_TREAT_INTEGER_AS_BIGINT = 404025,
ERR_CONN_CREATE_INVALID_PRIVATE_KEY = 404026,
ERR_CONN_CREATE_INVALID_PRIVATE_KEY_PATH = 404027,
ERR_CONN_CREATE_INVALID_PRIVATE_KEY_PASS = 404028,
ERR_CONN_CREATE_INVALID_OAUTH_TOKEN = 404029,
ERR_CONN_CREATE_INVALID_VALIDATE_DEFAULT_PARAMETERS = 404030,
ERR_CONN_CREATE_INVALID_APPLICATION = 404031,
ERR_CONN_CREATE_MISSING_PROXY_USER = 404032,
ERR_CONN_CREATE_INVALID_PROXY_USER = 404033,
ERR_CONN_CREATE_MISSING_PROXY_PASS = 404034,
ERR_CONN_CREATE_INVALID_PROXY_PASS = 404035,
ERR_CONN_CREATE_INVALID_NO_PROXY = 404036,
ERR_CONN_CREATE_INVALID_ARRAY_BINDING_THRESHOLD = 404037,
ERR_CONN_CREATE_INVALID_GCS_USE_DOWNSCOPED_CREDENTIAL = 404038,
ERR_CONN_CREATE_INVALID_FORCE_STAGE_BIND_ERROR = 404039,
ERR_CONN_CREATE_INVALID_BROWSER_TIMEOUT = 404040,
ERR_CONN_CREATE_INVALID_DISABLED_QUERY_CONTEXT_CACHE = 404041,
ERR_CONN_CREATE_INVALID_INCLUDE_RETRY_REASON = 404042,
ERR_CONN_CREATE_INVALID_CLIENT_CONFIG_FILE = 404043,
ERR_CONN_CREATE_INVALID_RETRY_TIMEOUT = 404044,
ERR_CONN_CREATE_INVALID_ACCOUNT_REGEX = 404045,
ERR_CONN_CREATE_INVALID_REGION_REGEX = 404046,
ERR_CONN_CREATE_INVALID_DISABLE_CONSOLE_LOGIN = 404047,
// 405001
ERR_CONN_CONNECT_INVALID_CALLBACK = 405001,
// 405501
ERR_CONN_CONNECT_STATUS_CONNECTING = 405501, // sql state: 08002
ERR_CONN_CONNECT_STATUS_CONNECTED = 405502, // sql state: 08002
ERR_CONN_CONNECT_STATUS_DISCONNECTED = 405503, // sql state: 08002
ERR_CONN_CREATE_INVALID_AUTH_CONNECT = 405504,
ERR_CONN_CONNECT_INVALID_CLIENT_CONFIG = 405505,
// 406001
ERR_CONN_DESTROY_INVALID_CALLBACK = 406001,
// 406501
ERR_CONN_DESTROY_STATUS_PRISTINE = 406501,
ERR_CONN_DESTROY_STATUS_DISCONNECTED = 406502,
// 407001
ERR_CONN_REQUEST_STATUS_PRISTINE = 407001, // sql state: 08003
ERR_CONN_REQUEST_STATUS_DISCONNECTED = 407002, // sql state: 08003
// 408001
ERR_CONN_DESERIALIZE_MISSING_CONFIG = 408001,
ERR_CONN_DESERIALIZE_INVALID_CONFIG_TYPE = 408002,
ERR_CONN_DESERIALIZE_INVALID_CONFIG_FORM = 408003,
// 409001
ERR_CONN_EXEC_STMT_MISSING_OPTIONS = 409001,
ERR_CONN_EXEC_STMT_INVALID_OPTIONS = 409002,
ERR_CONN_EXEC_STMT_MISSING_SQL_TEXT = 409003,
ERR_CONN_EXEC_STMT_INVALID_SQL_TEXT = 409004,
ERR_CONN_EXEC_STMT_INVALID_INTERNAL = 409005,
ERR_CONN_EXEC_STMT_INVALID_PARAMETERS = 409006,
ERR_CONN_EXEC_STMT_INVALID_BINDS = 409007,
ERR_CONN_EXEC_STMT_INVALID_BIND_VALUES = 409008,
ERR_CONN_EXEC_STMT_INVALID_COMPLETE = 409009,
ERR_CONN_EXEC_STMT_INVALID_STREAM_RESULT = 409010,
ERR_CONN_EXEC_STMT_INVALID_FETCH_AS_STRING = 409011,
ERR_CONN_EXEC_STMT_INVALID_FETCH_AS_STRING_VALUES = 409012,
ERR_CONN_EXEC_STMT_INVALID_REQUEST_ID = 409013,
ERR_CONN_EXEC_STMT_INVALID_ASYNC_EXEC = 409014,
// 410001
ERR_CONN_FETCH_RESULT_MISSING_OPTIONS = 410001,
ERR_CONN_FETCH_RESULT_INVALID_OPTIONS = 410002,
ERR_CONN_FETCH_RESULT_MISSING_QUERY_ID = 410003,
ERR_CONN_FETCH_RESULT_INVALID_QUERY_ID = 410004,
ERR_CONN_FETCH_RESULT_INVALID_COMPLETE = 410005,
ERR_CONN_FETCH_RESULT_INVALID_STREAM_RESULT = 410006,
ERR_CONN_FETCH_RESULT_INVALID_FETCH_AS_STRING = 410007,
ERR_CONN_FETCH_RESULT_INVALID_FETCH_AS_STRING_VALUES = 410008,
// 411001
ERR_STMT_STREAM_ROWS_INVALID_OPTIONS = 411001,
ERR_STMT_STREAM_ROWS_INVALID_START = 411002,
ERR_STMT_STREAM_ROWS_INVALID_END = 411003,
ERR_STMT_STREAM_ROWS_INVALID_FETCH_AS_STRING = 411004,
ERR_STMT_STREAM_ROWS_INVALID_FETCH_AS_STRING_VALUES = 411005,
ERR_STMT_STREAM_ROWS_INVALID_ROW_MODE = 411006,
// 412001
ERR_OCSP_REVOKED = 412001,
ERR_OCSP_UNKNOWN = 412002,
ERR_OCSP_NO_SIGNATURE_ALGORITHM = 412003,
ERR_OCSP_INVALID_SIGNATURE = 412004,
ERR_OCSP_NO_RESPONSE = 412005,
ERR_OCSP_INVALID_VALIDITY = 412006,
ERR_OCSP_UNKNOWN_STATE = 412007,
ERR_OCSP_NOT_TWO_ELEMENTS = 412008,
ERR_OCSP_CACHE_EXPIRED = 412009,
ERR_OCSP_FAILED_PARSE_RESPONSE = 412010,
ERR_OCSP_INVALID_CERTIFICATE_VALIDITY = 412011,
ERR_OCSP_RESPONDER_TIMEOUT = 412012,
ERR_OCSP_CACHE_SERVER_TIMEOUT = 412013,
ERR_OCSP_FAILED_OBTAIN_OCSP_RESPONSE = 412014,
// 450001
ERR_STMT_FETCH_ROWS_MISSING_OPTIONS = 450001,
ERR_STMT_FETCH_ROWS_INVALID_OPTIONS = 450002,
ERR_STMT_FETCH_ROWS_MISSING_EACH = 450003,
ERR_STMT_FETCH_ROWS_INVALID_EACH = 450004,
ERR_STMT_FETCH_ROWS_MISSING_END = 450005,
ERR_STMT_FETCH_ROWS_INVALID_END = 450006,
ERR_STMT_FETCH_ROWS_FETCHING_RESULT = 450007,
// 460001
ERR_GET_RESPONSE_QUERY_INVALID_UUID = 460001,
ERR_GET_RESULTS_QUERY_ID_NO_DATA = 460002,
ERR_GET_RESULTS_QUERY_ID_NOT_SUCCESS_STATUS = 460003,
}
export type CustomParser = (rawColumnValue: string) => any;
export type Bind = string | number;
export type InsertBinds = Bind[][];
export type Binds = Bind[] | InsertBinds;
export type StatementCallback = (err: SnowflakeError | undefined, stmt: RowStatement | FileAndStageBindStatement, rows?: Array<any> | undefined) => void;
export type ConnectionCallback = (err: SnowflakeError | undefined, conn: Connection) => void
type PoolOptions = import('generic-pool').Options;
type Readable = import('stream').Readable;
type Pool<T> = import('generic-pool').Pool<T>;
export interface ConfigureOptions {
/**
* Set the logLevel and logFilePath,
* https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-logs.
*/
logLevel?: LogLevel | undefined;
logFilePath?: string | undefined;
/**
* Check the ocsp checking is off.
*/
insecureConnect?: boolean | undefined;
/**
* The default value is true.
* Detailed information: https://docs.snowflake.com/en/user-guide/ocsp.
*/
ocspFailOpen?: boolean | undefined;
/**
* The Snowflake Node.js driver provides the following default parsers for processing JSON and XML data in result sets.
* Detailed information: https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-consume.
*/
jsonColumnVariantParser?: CustomParser;
xmlColumnVariantParser?: CustomParser;
/**
* Specifies whether to enable keep-alive functionality on the socket immediately after receiving a new connection request.
*/
keepAlive?: boolean,
}
export interface ConnectionOptions {
//Detail information: https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-options
/**
* Your account identifier.
*/
account: string;
/**
* Specifies the name of the client application connecting to Snowflake.
*/
application?: string;
/**
* @deprecated
* The ID for the region where your account is located.
*/
region?: string;
/**
* Host address to which the driver should connect.
*/
host?: string;
/**
* Specifies a fully-qualified endpoint for connecting to Snowflake.
*/
accessUrl?: string;
/**
* The login name for your Snowflake user or your Identity Provider (e.g. your login name for Okta).
*/
username?: string;
/**
* Password for the user.
*/
password?: string;
/**
* Specifies the authenticator to use for verifying user login credentials.
*/
authenticator?: string;
/**
* Specifies the hostname of an authenticated proxy server.
*/
proxyHost?: string;
/**
* Specifies the password for the user specified by proxyUser.
*/
proxyPort?: number;
/**
* Specifies the serviceName.
*/
serviceName?: string;
/**
* Specifies the private key (in PEM format) for key pair authentication.
*/
privateKey?: string;
/**
* Specifies the local path to the private key file (e.g. rsa_key.p8)
*/
privateKeyPath?: string;
/**
* Specifies the passcode to decrypt the private key file, if the file is encrypted.
*/
privateKeyPass?: string;
/**
* Specifies the OAuth token to use for authentication. Set this option if you set the authenticator option to OAUTH.
*/
token?: string;
/**
* The default virtual warehouse to use for the session after connecting. Used for performing queries, loading data, etc.
*/
warehouse?: string;
/**
* The default database to use for the session after connecting.
*/
database?: string;
/**
* The default schema to use for the session after connecting.
*/
schema?: string;
/**
* The default security role to use for the session after connecting.
*/
role?: string;
/**
* Returns the rowMode string value ('array', 'object' or 'object_with_renamed_duplicated_columns'). Could be null or undefined.
*/
rowMode?: RowMode;
/**
* Enabling this parameter causes the method to return a Node.js Readable stream, which you can use to consume rows as they are received.
*/
streamResult?: boolean;
/**
* return the following data types as strings: Boolean, Number, Date, Buffer, and JSON.
*/
fetchAsString?: DataType[] | undefined;
/**
* By default, client connections typically time out approximately 3-4 hours after the most recent query was executed.
*/
clientSessionKeepAlive?: boolean;
/**
* Sets the frequency (interval in seconds) between heartbeat messages.
*/
clientSessionKeepAliveHeartbeatFrequency?: number;
/**
* To convert Snowflake INTEGER columns to JavaScript Bigint, which can store larger values than JavaScript Number
*/
jsTreatIntegerAsBigInt?: boolean;
/**
* Sets the maximum number of binds the driver uses in a bulk insert operation. The default value is 100000 (100K).
*/
arrayBindingThreshold?: number;
/**
* Set whether the retry reason is included or not in the retry url.
*/
includeRetryReason?: boolean;
/**
* The max login timeout value. This value is either 0 or over 300.
*/
retryTimeout?: number;
/**
* The option to use https request only for the snowflake server if other GCP metadata or configuration is already set on the machine.
* The default value is false.
*/
forceGCPUseDownscopedCredential?: boolean
}
export interface Connection {
/**
* Returns true if the connection is active otherwise false.
*/
isUp(): boolean;
/**
* Returns the connection id.
*/
getId(): string;
/**
* Returns true if the connection is good to send a query otherwise false.
*/
isValidAsync(): Promise<boolean>;
/**
* Set the private link as the OCSP cache server's URL.
*/
setupOcspPrivateLink(host: string): void;
/**
* Establishes a connection if not in a fatal state.
*/
connect(callback: ConnectionCallback): void;
/**
* Establishes a connection if not in a fatal state.
*
* If you do not set the authenticator option to `EXTERNALBROWSER` (in order to use browser-based SSO) or
* `https://<okta_account_name>.okta.com` (in order to use native SSO through Okta), call the {@link connect}
* method.
*/
connectAsync(callback: ConnectionCallback): Promise<void>;
/**
* Executes a statement.
*/
execute(options: StatementOption): RowStatement | FileAndStageBindStatement;
/**
* Fetches the result of a previously issued statement.
*/
fetchResult(options: StatementOption): RowStatement | FileAndStageBindStatement;
/**
* Immediately terminates the connection without waiting for currently executing statements to complete.
*/
destroy(fn: ConnectionCallback): void;
/**
* Gets the status of the query based on queryId.
*/
getQueryStatus(queryId: string): string;
/**
* Gets the status of the query based on queryId and throws if there's an error.
*/
getQueryStatusThrowIfError(queryId: string): string;
/**
* Gets the results from a previously ran query based on queryId.
*/
getResultsFromQueryId(options: StatementOption): RowStatement | FileAndStageBindStatement;
/**
* Checks whether the given status is currently running.
*/
isStillRunning(status: QueryStatus): boolean;
/**
* Checks whether the given status means that there has been an error.
*/
isAnError(): boolean;
}
export interface StatementOption {
sqlText: string;
complete: StatementCallback;
/**
* The requestId is for resubmitting requests.
* Detailed Information: https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-execute.
*/
requestId?: string;
/**
* Use different rest endpoints based on whether the query id is available.
*/
queryId?: string;
/**
* You can also consume a result as a stream of rows by setting the streamResult connection parameter to true in connection.execute
* when calling the statement.streamRows() method.
* Detailed Information: https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-consume.
*/
streamResult?: boolean;
/**
* Find information: https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-execute.
*/
binds?: Binds;
/**
* The fetchAsString option is to return the following data types as strings: Boolean, Number, Date, Buffer, and JSON.
* Detailed information: https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-consume.
*/
fetchAsString?: DataType[];
/**
* Detailed information: https://docs.snowflake.com/en/developer-guide/node-js/nodejs-driver-execute.
*/
parameters?: Record<string, any>;
}
export interface RowStatement {
/**
* Returns this statement's SQL text.
*/
getSqlText(): string;
/**
* Returns the current status of this statement.
*/
getStatus(): StatementStatus;
/**
* Returns the columns produced by this statement.
*/
getColumns(): Column[];
/**
* Given a column identifier, returns the corresponding column.
* The column identifier can be either the column name (String) or the column index(Number).
* If a column is specified and there is more than one column with that name,
* the first column with the specified name will be returned.
*/
getColumn(columnIdentifier: string | number): Column;
/**
* Returns the number of rows returned by this statement.
*/
getNumRows(): number;
/**
* Returns the number of rows updated by this statement.
*/
getNumUpdatedRows(): number | undefined;
/**
* Returns an object that contains information about the values of
* the current warehouse, current database, etc.,
* when this statement finished executing.
*/
getSessionState(): object | undefined;
/**
* Returns the request id that was used when the statement was issued.
*/
getRequestId(): string;
/**
* Returns the query id generated by the server for this statement.
* If the statement is still executing, and we don't know the query id yet,
* this method will return undefined.
* Should use getQueryId instead.
* @deprecated
* @returns {String}
*/
getStatementId(): string
/**
* Returns the query id generated by the server for this statement.
* If the statement is still executing, and we don't know the query id
* yet, this method will return undefined.
*/
getQueryId(): string;
/**
* Streams the rows in this statement's result. If start and end values are
* specified, only rows in the specified range are streamed.
*
* @param {Object} options
*/
streamRows(options?: StreamOptions): Readable;
/**
* Fetches the rows in this statement's result and invokes each()
* callback on each row. If start and end values are specified each()
* callback will only be invoked on rows in the specified range.
*
* @param {Object} options
*/
fetchRows(options?: StreamOptions): Readable;
}
export interface Column {
/**
* Returns the name of this column.
*/
getName(): string;
/**
* Returns the index of this column.
*/
getIndex(): number;
/**
* Returns the id of this column.
*/
getId(): number;
/**
* Determines if this column is nullable.
*/
isNullable(): boolean;
/**
* Returns the scale associated with this column.
*/
getScale(): number;
/**
* Returns the type associated with this column.
*/
getType(): string;
/**
* Returns the precision associated with this column
*/
getPrecision(): number;
/**
* Returns true if this column is type STRING.
*/
isString(): boolean;
/**
* Returns true if this column is type BINARY.
*/
isBinary(): boolean;
/**
* Returns true if this column is type NUMBER.
*/
isNumber(): boolean;
/**
* Returns true if this column is type BOOLEAN.
*/
isBoolean(): boolean;
/**
* Returns true if this column is type DATE.
*/
isDate(): boolean;
/**
* Returns true if this column is type TIME.
*/
isTime(): boolean;
/**
* Returns true if this column is type TIMESTAMP.
*/
isTimestamp(): boolean;
/**
* Returns true if this column is type TIMESTAMP_LTZ.
*/
isTimestampLtz(): boolean;
/**
* Returns true if this column is type TIMESTAMP_NTZ.
*/
isTimestampNtz(): boolean;
/**
* Returns true if this column is type TIMESTAMP_TZ.
*/
isTimestampTz(): boolean;
/**
* Returns true if this column is type VARIANT.
*/
isVariant(): boolean;
/**
* Returns true if this column is type OBJECT.
*/
isObject(): boolean;
/**
* Returns true if this column is type ARRAY.
*/
isArray(): boolean;
/**
* Returns the value of this column in a row.
*/
getRowValue(row: object): any;
/**
* Returns the value of this in a row as a String.
*/
getRowValueAsString(row: object): string;
}
export interface OcspModes {
FAIL_CLOSED: string,
FAIL_OPEN: string,
INSECURE: string,
}
export interface FileAndStageBindStatement extends RowStatement {
hasNext(): () => boolean;
NextResult(): () => void;
}
export interface SnowflakeErrorExternal extends Error {
name: any,
message: any,
code?: any,
sqlState?: any,
data?: any,
response?: any,
responseBody?: any,
cause?: any,
isFatal?: any,
stack?: any
}
export interface SnowflakeError extends Error {
code?: ErrorCode,
sqlState?: string,
data?: Record<string, any>,
response?: Record<string, any>,
responseBody?: string,
cause?: Error,
isFatal?: boolean,
externalize?: () => SnowflakeErrorExternal | undefined,
}
export interface StreamOptions {
start?: number;
end?: number;
fetchAsString?: DataType[] | undefined;
}
/**
* Online Certificate Status Protocol (OCSP), detailed information: https://docs.snowflake.com/en/user-guide/ocsp.
*/
export const ocspModes: OcspModes;
/**
* Creates a connection object that can be used to communicate with Snowflake.
*/
export function createConnection(options: ConnectionOptions): Connection;
/**
* Deserializes a serialized connection.
*/
export function deserializeConnection(options: ConnectionOptions, serializedConnection: string): Connection;
/**
* Serializes a given connection.
*/
export function serializeConnection(connection: Connection): string;
/**
* Configures this instance of the Snowflake core module.
*/
export function configure(options?: ConfigureOptions): void;
/**
* Creates a connection pool for Snowflake connections.
*/
export function createPool(options: ConnectionOptions, poolOptions?: PoolOptions): Pool<Connection>;
}