2017-05-05 4 views
0

Ich möchte Python und Oracle 11g verbinden. Python-Version - 3.6.1/64 Bit, Windows 7 - 64 Bit.Python - Oracle 11g Verbindung

habe ich installiert cx_Oracle von https://oracle.github.io/python-cx_Oracle/ Der Kodex ist als unten -

import cx_Oracle 

con = cx_Oracle.connect('sde/[email protected]') 
print (con.version) 
con.close() 

Aber ich bin unten Fehler beim Abruf -

C:\Python\Python36\python.exe 
D:/Automation/Python_WP/practice/database/db_connection.py 
Traceback (most recent call last): 
File "D:/Automation/Python_WP/practice/database/db_connection.py", line 1, in <module> 
import cx_Oracle 
ImportError: DLL load failed: The specified module could not be found. 

Process finished with exit code 1 

Bitte lassen Sie mich die Schritte kennen Python 3.6.1 verbinden und Oracle 11g für Windows-7 64 Bit. Jetzt

+0

hast du es mit pip installiert oder heruntergeladen? – Exprator

+0

Ich habe cx_Oracle-5.3-11g.win-amd64-py3.6-2.exe (MD5) installiert. – Kuladip

+0

Verwenden Sie Pip installieren Cx_Oracle und versuchen Sie es. hoffe, es wird diesen Fehler beheben – Exprator

Antwort

1
1. Download msvcp71.dll and msvcr71.dll from the web. 
2. Save them to your C:\Windows\System32 folder. 
3. Save them to your C:\Windows\SysWOW64 folder as well (if you have a 64-bit operating system). 

versuchen, Ihre Code-Datei in Python ausgeführt, und es wird die Grafik in wenigen Sekunden geladen werden.

+0

In meinem System Windows 7 sind Python 3.6.1 und Oracle 11.2.0.3.0 64 Bit. Ich habe folgendes - 1. Download msvcp71.dll und msvcr71.dll aus dem Internet. 2. Speichern Sie sie in Ihrem C: \ Windows \ System32-Ordner. 3. Speichern Sie sie auch in Ihrem C: \ Windows \ SysWOW64-Ordner 4. Laden Sie instantclient-basic-nt-11.2.0.3.0.zip herunter und richten Sie diesen Pfad in Umgebungsvariable -> Systemvariable -> Pfad ein. Auch in das gleiche Verzeichnis habe ich Paste msvcr100.dll Datei 5. Download und installieren cx_Oracle-5.3-11g.win-amd64-py3.6-2.exe Aber immer noch Import Cx_Oracle zeigt Fehler. – Kuladip