|
1 | 1 | mod errors;
|
2 | 2 | mod typesystem;
|
3 | 3 |
|
| 4 | +use std::collections::HashMap; |
| 5 | + |
4 | 6 | pub use self::errors::OracleSourceError;
|
5 | 7 | pub use self::typesystem::OracleTypeSystem;
|
6 | 8 | use crate::constants::{DB_BUFFER_SIZE, ORACLE_ARRAY_SIZE};
|
@@ -55,12 +57,19 @@ pub fn connect_oracle(conn: &Url) -> Connector {
|
55 | 57 | let user = decode(conn.username())?.into_owned();
|
56 | 58 | let password = decode(conn.password().unwrap_or(""))?.into_owned();
|
57 | 59 | 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(); |
60 | 60 |
|
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 | + |
62 | 71 | 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() { |
64 | 73 | debug!("No username or password provided, assuming system auth.");
|
65 | 74 | connector.external_auth(true);
|
66 | 75 | }
|
|
0 commit comments