summaryrefslogtreecommitdiff
path: root/yoyo/backends/contrib/oracle.py
diff options
context:
space:
mode:
authorOlly Cope <olly@ollycope.com>2022-09-01 12:28:48 +0000
committerOlly Cope <olly@ollycope.com>2022-09-01 12:28:48 +0000
commit030c45f0d17144a681d56de85857eb5819e1c09d (patch)
treef053eeef1def3d38c4702a99ad2b6c4a058fe336 /yoyo/backends/contrib/oracle.py
parent290150383e2a12628ccc72c4f4fed252a36d0f40 (diff)
downloadyoyo-030c45f0d17144a681d56de85857eb5819e1c09d.tar.gz
Split yoyo.backends into a package
Diffstat (limited to 'yoyo/backends/contrib/oracle.py')
-rw-r--r--yoyo/backends/contrib/oracle.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/yoyo/backends/contrib/oracle.py b/yoyo/backends/contrib/oracle.py
new file mode 100644
index 0000000..24f644c
--- /dev/null
+++ b/yoyo/backends/contrib/oracle.py
@@ -0,0 +1,46 @@
+# Copyright 2015 Oliver Cope
+#
+# Licensed 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.
+
+from yoyo.backends.base import DatabaseBackend
+
+
+class OracleBackend(DatabaseBackend):
+
+ driver_module = "cx_Oracle"
+ list_tables_sql = "SELECT table_name FROM all_tables WHERE owner=user"
+
+ def begin(self):
+ """Oracle is always in a transaction, and has no "BEGIN" statement."""
+ self._in_transaction = True
+
+ def connect(self, dburi):
+ kwargs = dburi.args
+ if dburi.username is not None:
+ kwargs["user"] = dburi.username
+ if dburi.password is not None:
+ kwargs["password"] = dburi.password
+ # Oracle combines the hostname, port and database into a single DSN.
+ # The DSN can also be a "net service name"
+ kwargs["dsn"] = ""
+ if dburi.hostname is not None:
+ kwargs["dsn"] = dburi.hostname
+ if dburi.port is not None:
+ kwargs["dsn"] += ":{0}".format(dburi.port)
+ if dburi.database is not None:
+ if kwargs["dsn"]:
+ kwargs["dsn"] += "/{0}".format(dburi.database)
+ else:
+ kwargs["dsn"] = dburi.database
+
+ return self.driver.connect(**kwargs)