You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# These values can be set here, or on the connection string.
21
-
# Catalog: The catalog to connect to. This is a required setting.
22
-
#Catalog=
21
+
# Catalog(Required): The catalog to connect to. This is a required setting.
22
+
Catalog=
23
23
24
-
# SQLDialect: The SQL Dialect to use. There are two SQL dialects:
24
+
# SQLDialect(Optional): The SQL Dialect to use. There are two SQL dialects:
25
25
# 0 = BigQuery Legacy SQL
26
26
# 1 = BigQuery Standard SQL (SQL 11)
27
-
SQLDialect=1
27
+
#SQLDialect=1
28
28
29
-
# OAuth Mechanism: The OAuth mechanism to use. There are three choices:
30
-
# 0 = Service Authentication
31
-
# 1 = User Authentication
29
+
# OAuth Mechanism(Required): The OAuth mechanism to use. There are three choices:
30
+
# 0 = Service or User Authentication
32
31
# 3 = Application Default Credentials
33
32
# 4 = External account Authentication
34
33
#
35
-
# This is a required setting.
36
-
OAuthMechanism=1
34
+
OAuthMechanism=0
37
35
38
-
# KeyFile Path: For Service and External Authentication, this is a required setting. This is the path to the stored keyfile (.p12).
39
-
# KeyFilePath=
36
+
# KeyFilePath(Required): For Service and External Authentication, this is a required setting. This is the path to the stored keyfile (.p12).
37
+
# Note: This is not required for Application Default Credentials
38
+
KeyFilePath=
40
39
41
-
# Used to specify the full path of the PEM formatted file containing trusted SSL CA certificates.
40
+
#TrustedCerts(Optional): Used to specify the full path of the PEM formatted file containing trusted SSL CA certificates.
42
41
# If an empty string is passed in for the configuration, the driver expects the trusted SSL CA
43
42
# certificates can be found in the file named cacerts.pem located in the same directory as the
44
43
# driver's shared library.
45
44
#TrustedCerts=
46
45
47
-
# AllowLargeResults: When set to 1, the driver allows for result sets in responses to be larger than 128 MB.
48
-
AllowLargeResults=0
46
+
# AllowLargeResults(Optional): When set to 1, the driver allows for result sets in responses to be larger than 128 MB.
47
+
# AllowLargeResults=0
48
+
49
+
# UseDefaultLargeResultsDataset(Optional): The id of the dataset that you want to use to store temporary tables for large result sets.
50
+
# UseDefaultLargeResultsDataset=1
51
+
52
+
# LargeResultsDataSetId(Optional): DatasetId to store temporary tables created.
53
+
# This is a required setting if AllowLargeResults is set to 1.
54
+
# LargeResultsDataSetId=_bqodbc_temp_tables
49
55
50
-
# LargeResultsDataSetId: DatasetId to store temporary tables created. This is a required setting if AllowLargeResults is set to 1.
51
-
LargeResultsDataSetId=_bqodbc_temp_tables
56
+
# LargeResultsTempTableExpirationTime(Optional): Time in milliseconds before the temporary tables created expire.
57
+
# This is a required setting if AllowLargeResults is set to 1.
58
+
# LargeResultsTempTableExpirationTime=3600000
52
59
53
-
#LargeResultsTempTableExpirationTime: Time in milliseconds before the temporary tables created expire. This is a required setting if AllowLargeResults is set to 1.
54
-
LargeResultsTempTableExpirationTime=3600000
60
+
#AllowHtapiForLargeResults(Optional): Storage read API is used to fetch results when this is enabled.
0 commit comments