mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
Fixes #2677
This commit is contained in:
@@ -7,7 +7,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
|
||||
try:
|
||||
import pyodbc
|
||||
except ImportError:
|
||||
except:
|
||||
pass
|
||||
|
||||
import logging
|
||||
|
||||
@@ -7,7 +7,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
|
||||
try:
|
||||
import ibm_db_dbi
|
||||
except ImportError:
|
||||
except:
|
||||
pass
|
||||
|
||||
import logging
|
||||
|
||||
@@ -7,7 +7,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
|
||||
try:
|
||||
import kinterbasdb
|
||||
except ImportError:
|
||||
except:
|
||||
pass
|
||||
|
||||
import logging
|
||||
|
||||
@@ -8,7 +8,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
try:
|
||||
import jaydebeapi
|
||||
import jpype
|
||||
except ImportError, msg:
|
||||
except:
|
||||
pass
|
||||
|
||||
import logging
|
||||
|
||||
@@ -7,7 +7,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
|
||||
try:
|
||||
import ibm_db_dbi
|
||||
except ImportError:
|
||||
except:
|
||||
pass
|
||||
|
||||
import logging
|
||||
|
||||
@@ -8,7 +8,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
try:
|
||||
import _mssql
|
||||
import pymssql
|
||||
except ImportError:
|
||||
except:
|
||||
pass
|
||||
|
||||
import logging
|
||||
|
||||
@@ -7,7 +7,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
|
||||
try:
|
||||
import pymysql
|
||||
except ImportError:
|
||||
except:
|
||||
pass
|
||||
|
||||
import logging
|
||||
|
||||
@@ -7,7 +7,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
|
||||
try:
|
||||
import cx_Oracle
|
||||
except ImportError:
|
||||
except:
|
||||
pass
|
||||
|
||||
import logging
|
||||
|
||||
@@ -10,7 +10,7 @@ try:
|
||||
import psycopg2.extensions
|
||||
psycopg2.extensions.register_type(psycopg2.extensions.UNICODE)
|
||||
psycopg2.extensions.register_type(psycopg2.extensions.UNICODEARRAY)
|
||||
except ImportError:
|
||||
except:
|
||||
pass
|
||||
|
||||
from lib.core.data import logger
|
||||
|
||||
@@ -7,7 +7,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
|
||||
try:
|
||||
import sqlite3
|
||||
except ImportError:
|
||||
except:
|
||||
pass
|
||||
|
||||
import logging
|
||||
|
||||
@@ -8,7 +8,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
try:
|
||||
import _mssql
|
||||
import pymssql
|
||||
except ImportError:
|
||||
except:
|
||||
pass
|
||||
|
||||
import logging
|
||||
|
||||
Reference in New Issue
Block a user