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
Copy file name to clipboardExpand all lines: ads/oracledb/oracle_db.py
+21-33Lines changed: 21 additions & 33 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
#!/usr/bin/env python
2
+
# -*- coding: utf-8 -*--
2
3
3
-
# Copyright (c) 2021, 2024 Oracle and/or its affiliates.
4
+
# Copyright (c) 2021, 2023 Oracle and/or its affiliates.
4
5
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
5
6
6
7
"""
@@ -16,20 +17,19 @@
16
17
Note: We need to account for cx_Oracle though oracledb can operate in thick mode. The end user may be is using one of the old conda packs or an environment where cx_Oracle is the only available driver.
17
18
"""
18
19
20
+
fromads.common.utilsimportORACLE_DEFAULT_PORT
21
+
19
22
importlogging
23
+
importnumpyasnp
20
24
importos
25
+
importpandasaspd
21
26
importtempfile
22
-
importzipfile
23
27
fromtimeimporttime
24
-
fromtypingimportDict, Iterator, List, Optional, Union
0 commit comments