-
Notifications
You must be signed in to change notification settings - Fork 4.1k
GH-49723: [C++][FlightRPC][ODBC] Update ODBC Documentation #49851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
justing-bq
wants to merge
3
commits into
apache:main
Choose a base branch
from
Bit-Quill:gh-49723-doc-updates
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+95
−11
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| <!--- | ||
| Licensed to the Apache Software Foundation (ASF) under one | ||
| or more contributor license agreements. See the NOTICE file | ||
| distributed with this work for additional information | ||
| regarding copyright ownership. The ASF licenses this file | ||
| to you under the Apache License, Version 2.0 (the | ||
| "License"); you may not use this file except in compliance | ||
| with the License. You may obtain a copy of the License at | ||
|
|
||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, | ||
| software distributed under the License is distributed on an | ||
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| KIND, either express or implied. See the License for the | ||
| specific language governing permissions and limitations | ||
| under the License. | ||
| --> | ||
|
|
||
| # Connection Properties on Apache Arrow Flight SQL ODBC Driver | ||
|
|
||
| ## Setting ODBC Connection Properties | ||
|
|
||
| ODBC connection parameters can be set in a connection string or defined in a DSN. On macOS and Linux, DSNs are typically defined in your system's `odbc.ini`. On Windows they are typically configured with the ODBC Data Source Administrator. | ||
|
|
||
| The following sample connection string and sample DSN are two equivalent ways to connect to Arrow. | ||
|
|
||
| ### Sample Connection String | ||
| ``` | ||
| driver={Apache Arrow Flight SQL ODBC Driver};host=127.0.0.1;port=12345;uid=sample_user;pwd=sample_password;useEncryption=false;useWideChar=true; | ||
| ``` | ||
|
|
||
| ### Sample DSN | ||
| ``` | ||
| [Apache Arrow Flight SQL] | ||
| driver = Apache Arrow Flight SQL ODBC Driver | ||
| host = 127.0.0.1 | ||
| port = 12345 | ||
| uid = sample_user | ||
| pwd = sample_password | ||
| useEncryption = false | ||
| useWideChar = true | ||
| ``` | ||
|
|
||
| ### Driver Connection Options | ||
| | Option | Description | Default | | ||
| |--------|-------------|---------------| | ||
| | `driver` | Required: the driver for this ODBC driver. | `Apache Arrow Flight SQL ODBC Driver` | | ||
| | `dsn` | Data Source Name used for configuring the connection. | `Apache Arrow Flight SQL` | | ||
| | `host` | The IP address or hostname for the server. | `NONE` | | ||
| | `port` | The TCP port number the server uses for ODBC connections. | `NONE` | | ||
| | `user` | The username for authentication to the server. | `NONE` | | ||
| | `user id` | The username for authentication to the server. | `NONE` | | ||
| | `uid` | The username for authentication to the server. | `NONE` | | ||
| | `password` | The password for authentication to the server. | `NONE` | | ||
| | `pwd` | The password for authentication to the server. | `NONE` | | ||
| | `token` | The personal access token for authentication to the server. | `NONE` | | ||
| | `useEncryption` | Setting to determine if an SSL-encrypted connection should be used. | `true` | | ||
| | `disableCertificateVerification` | Setting to determine if the driver should verify the host certificate against the trust store. | `false` | | ||
| | `trustedCerts` | The full path of the .pem file containing certificates for the purpose of verifying the server. | `NONE` | | ||
| | `useSystemTrustStore` | Setting to determine whether to use a CA certificate from the system's trust store or from a specified .pem file. | `true` on Windows, `false` on macOS & Linux | | ||
| | `stringColumnLength` | Maximum length of a string column. Some apps may require a lower length. | `NONE` | | ||
| | `useWideChar` | Setting to determine if wide characters should be used. Important for Unicode applications. | `true` on Windows, `false` on macOS & Linux | | ||
| | `chunkBufferCapacity` | Capacity of a chunk buffer. Larger values will improve throughput at the cost of increased memory usage. | 5 | | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.