Python cx_Oracle.Error() Examples
The following are 13
code examples of cx_Oracle.Error().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
cx_Oracle
, or try the search function
.
Example #1
Source File: base.py From GTDWeb with GNU General Public License v2.0 | 6 votes |
def _setup_environment(environ): # Cygwin requires some special voodoo to set the environment variables # properly so that Oracle will see them. if platform.system().upper().startswith('CYGWIN'): try: import ctypes except ImportError as e: from django.core.exceptions import ImproperlyConfigured raise ImproperlyConfigured("Error loading ctypes: %s; " "the Oracle backend requires ctypes to " "operate correctly under Cygwin." % e) kernel32 = ctypes.CDLL('kernel32') for name, value in environ: kernel32.SetEnvironmentVariableA(name, value) else: os.environ.update(environ)
Example #2
Source File: base.py From openhgsenti with Apache License 2.0 | 6 votes |
def _setup_environment(environ): # Cygwin requires some special voodoo to set the environment variables # properly so that Oracle will see them. if platform.system().upper().startswith('CYGWIN'): try: import ctypes except ImportError as e: from django.core.exceptions import ImproperlyConfigured raise ImproperlyConfigured("Error loading ctypes: %s; " "the Oracle backend requires ctypes to " "operate correctly under Cygwin." % e) kernel32 = ctypes.CDLL('kernel32') for name, value in environ: kernel32.SetEnvironmentVariableA(name, value) else: os.environ.update(environ)
Example #3
Source File: fuzzer.py From libinjection-fuzzer with MIT License | 5 votes |
def db_connect(args): if args.type == "mysql" or args.type == "mariadb": import mysql.connector try: connection = mysql.connector.connect( user=args.user, password=args.password, database=args.db) except mysql.connector.Error as err: print(colorize("red", "[ERROR] {}".format(err))) return None elif args.type == "mssql": import pymssql try: connection = pymssql.connect(server="localhost", database=args.db) except pymssql.Error as err: print(colorize("red", "[ERROR] {}".format(err))) return None elif args.type == "pgsql": import psycopg2 try: connection = psycopg2.connect( "dbname='{}' user='{}' password='{}'".format( args.db, args.user, args.password)) except psycopg2.Error as err: print(colorize("red", "[ERROR] {}".format(err))) return None elif args.type == "oracle": import cx_Oracle try: connection = cx_Oracle.connect( args.user, args.password, cx_Oracle.makedsn( '127.0.0.1', 1521, args.db), mode=cx_Oracle.SYSDBA) except cx_Oracle.Error as err: print(colorize("red", "[ERROR] {}".format(err))) return None return connection
Example #4
Source File: base.py From GTDWeb with GNU General Public License v2.0 | 5 votes |
def is_usable(self): try: self.connection.ping() except Database.Error: return False else: return True
Example #5
Source File: base.py From bioforum with MIT License | 5 votes |
def _setup_environment(environ): # Cygwin requires some special voodoo to set the environment variables # properly so that Oracle will see them. if platform.system().upper().startswith('CYGWIN'): try: import ctypes except ImportError as e: raise ImproperlyConfigured("Error loading ctypes: %s; " "the Oracle backend requires ctypes to " "operate correctly under Cygwin." % e) kernel32 = ctypes.CDLL('kernel32') for name, value in environ: kernel32.SetEnvironmentVariableA(name, value) else: os.environ.update(environ)
Example #6
Source File: base.py From bioforum with MIT License | 5 votes |
def is_usable(self): try: self.connection.ping() except Database.Error: return False else: return True
Example #7
Source File: base.py From Hands-On-Application-Development-with-PyCharm with MIT License | 5 votes |
def _setup_environment(environ): # Cygwin requires some special voodoo to set the environment variables # properly so that Oracle will see them. if platform.system().upper().startswith('CYGWIN'): try: import ctypes except ImportError as e: raise ImproperlyConfigured("Error loading ctypes: %s; " "the Oracle backend requires ctypes to " "operate correctly under Cygwin." % e) kernel32 = ctypes.CDLL('kernel32') for name, value in environ: kernel32.SetEnvironmentVariableA(name, value) else: os.environ.update(environ)
Example #8
Source File: base.py From Hands-On-Application-Development-with-PyCharm with MIT License | 5 votes |
def is_usable(self): try: self.connection.ping() except Database.Error: return False else: return True
Example #9
Source File: base.py From python with Apache License 2.0 | 5 votes |
def _setup_environment(environ): # Cygwin requires some special voodoo to set the environment variables # properly so that Oracle will see them. if platform.system().upper().startswith('CYGWIN'): try: import ctypes except ImportError as e: raise ImproperlyConfigured("Error loading ctypes: %s; " "the Oracle backend requires ctypes to " "operate correctly under Cygwin." % e) kernel32 = ctypes.CDLL('kernel32') for name, value in environ: kernel32.SetEnvironmentVariableA(name, value) else: os.environ.update(environ)
Example #10
Source File: base.py From python with Apache License 2.0 | 5 votes |
def is_usable(self): try: self.connection.ping() except Database.Error: return False else: return True
Example #11
Source File: base.py From openhgsenti with Apache License 2.0 | 5 votes |
def is_usable(self): try: self.connection.ping() except Database.Error: return False else: return True
Example #12
Source File: base.py From python2017 with MIT License | 5 votes |
def _setup_environment(environ): # Cygwin requires some special voodoo to set the environment variables # properly so that Oracle will see them. if platform.system().upper().startswith('CYGWIN'): try: import ctypes except ImportError as e: raise ImproperlyConfigured("Error loading ctypes: %s; " "the Oracle backend requires ctypes to " "operate correctly under Cygwin." % e) kernel32 = ctypes.CDLL('kernel32') for name, value in environ: kernel32.SetEnvironmentVariableA(name, value) else: os.environ.update(environ)
Example #13
Source File: base.py From python2017 with MIT License | 5 votes |
def is_usable(self): try: self.connection.ping() except Database.Error: return False else: return True