Skip to content

Commit bd57460

Browse files
authored
Merge pull request #700 from pangjunrong/feature/oracle-tnsnames-conn
feat: Added Option for Oracle Connector to use Alias w/ Params
2 parents 124a3a6 + d08f6ce commit bd57460

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

connectorx/src/sources/oracle/mod.rs

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
mod errors;
22
mod typesystem;
33

4+
use std::collections::HashMap;
5+
46
pub use self::errors::OracleSourceError;
57
pub use self::typesystem::OracleTypeSystem;
68
use crate::constants::{DB_BUFFER_SIZE, ORACLE_ARRAY_SIZE};
@@ -55,12 +57,19 @@ pub fn connect_oracle(conn: &Url) -> Connector {
5557
let user = decode(conn.username())?.into_owned();
5658
let password = decode(conn.password().unwrap_or(""))?.into_owned();
5759
let host = decode(conn.host_str().unwrap_or("localhost"))?.into_owned();
58-
let port = conn.port().unwrap_or(1521);
59-
let path = decode(conn.path())?.into_owned();
6060

61-
let conn_str = format!("//{}:{}{}", host, port, path);
61+
let params: HashMap<String, String> = conn.query_pairs().into_owned().collect();
62+
63+
let conn_str = if params.get("alias").map_or(false, |v| v == "true") {
64+
host.clone()
65+
} else {
66+
let port = conn.port().unwrap_or(1521);
67+
let path = decode(conn.path())?.into_owned();
68+
format!("//{}:{}{}", host, port, path)
69+
};
70+
6271
let mut connector = oracle::Connector::new(user.as_str(), password.as_str(), conn_str.as_str());
63-
if user.is_empty() && password.is_empty() && host == "localhost" {
72+
if user.is_empty() && password.is_empty() {
6473
debug!("No username or password provided, assuming system auth.");
6574
connector.external_auth(true);
6675
}

docs/databases/oracle.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Oracle
22

3+
### System Authentication
4+
```{hint}
5+
If you want to use system authentication to access Oracle, username & password should not present in the connection string.
6+
```
37

48
### Oracle Connection
59
```py
@@ -9,6 +13,14 @@ query = 'SELECT * FROM table' # query string
913
cx.read_sql(conn, query) # read data from Oracle
1014
```
1115

16+
### Oracle TNS Alias (DNS) Connection
17+
```py
18+
import connectorx as cx
19+
conn = 'oracle://username:password@alias_name?alias=true' # connection token
20+
query = 'SELECT * FROM table' # query string
21+
cx.read_sql(conn, query) # read data from Oracle
22+
```
23+
1224
### Oracle-Pandas Type Mapping
1325
| Oracle Type | Pandas Type | Comment |
1426
|:-------------------------:|:---------------------------:|:----------------------------------:|

0 commit comments

Comments
 (0)